diff --git a/themes/src/main/resources/theme/keycloak-preview/account/index.ftl b/themes/src/main/resources/theme/keycloak-preview/account/index.ftl index 3cc9398542..4183d14825 100644 --- a/themes/src/main/resources/theme/keycloak-preview/account/index.ftl +++ b/themes/src/main/resources/theme/keycloak-preview/account/index.ftl @@ -8,12 +8,12 @@ var baseUrl = '${baseUrl}'; var realm = '${realm}'; var resourceUrl = '${resourceUrl}'; - + <#if referrer??> var referrer = '${referrer}'; var referrer_uri = '${referrer_uri}'; - + <#if msg??> var locale = '${locale}'; var l18n_msg = JSON.parse('${msg?no_esc}'); @@ -70,7 +70,7 @@ const script = document.createElement("script"); script.src = resourceUrl + url; if (loadListener) script.addEventListener("load", loadListener); - document.head.appendChild(script); + document.head.appendChild(script); }; loadjs("/node_modules/core-js/client/shim.min.js", function(){ loadjs("/node_modules/zone.js/dist/zone.min.js"); @@ -106,8 +106,8 @@ - - + + - + - +
-

Welcome to Keycloak Account Management

+
+

Welcome to Keycloak Account Management

+

Through the account management console users can manage their own accounts. They can update the profile, change passwords, and setup two-factor authentication.

+
-
+
-

+

Personal Info

-

- Account -

+

Manage your basic information:
your name, email

+
+

Personal Info

-
+
-

+

Account Security

-

- More stuff goes here -

+

Control your password and account access

+
+

Change password

+
+

Authenticator

+
+

Device activity

+
+

Federated identities

-
+
-

+

Applications

-

- More stuff goes here -

+

Track and manage your app permission to access your account

+
+

Applications

-
+
-

+

My Resources

-

- More stuff goes here -

+

Share your resources among team members

+
+

Resources

diff --git a/themes/src/main/resources/theme/keycloak-preview/account/resources/styles.css b/themes/src/main/resources/theme/keycloak-preview/account/resources/styles.css index e69de29bb2..5d21a645b4 100644 --- a/themes/src/main/resources/theme/keycloak-preview/account/resources/styles.css +++ b/themes/src/main/resources/theme/keycloak-preview/account/resources/styles.css @@ -0,0 +1,17 @@ +/* Welcome Page */ + +body { + background: #f5f5f5; +} + +p.description { + font-size: 14px; + margin: 10px auto 20px; + max-width: 60%; + padding: 0 10px; + text-align: center; +} + +.btn-sign { + margin-top: 10px; +} diff --git a/themes/src/main/resources/theme/keycloak-preview/account/theme.properties b/themes/src/main/resources/theme/keycloak-preview/account/theme.properties index fb2e245ea5..63a008f9ac 100644 --- a/themes/src/main/resources/theme/keycloak-preview/account/theme.properties +++ b/themes/src/main/resources/theme/keycloak-preview/account/theme.properties @@ -1,2 +1,4 @@ parent=base -deprecatedMode=false \ No newline at end of file +deprecatedMode=false + +styles=styles.css