diff --git a/.idea/login_themes.iml b/.idea/login_themes.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/login_themes.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/markdown.xml b/.idea/markdown.xml new file mode 100644 index 0000000..1e34094 --- /dev/null +++ b/.idea/markdown.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..6e704f3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/amalati/background.png b/amalati/background.png new file mode 100644 index 0000000..48c415d Binary files /dev/null and b/amalati/background.png differ diff --git a/amalati/theme.css b/amalati/theme.css index e69de29..ba5af5c 100644 --- a/amalati/theme.css +++ b/amalati/theme.css @@ -0,0 +1,49 @@ +.login-pf body { + background: url(background.png) !important; + background-size: cover !important; +} + +.login-pf-page .login-pf-header h1 { + background: #618c36 !important; +} + +.pf-c-button.pf-m-primary { + background: #618c36 !important; +} + +div#kc-registration span a:hover { + background: #83b451; +} + +#kc-header { + background: #ffffff; +} + +.app-logo { + background-image: url(logo.png); + background-size: 100%; + background-repeat: no-repeat; +} + +.login-pf-page .login-pf-page-header p::before { + content: "Create infinitely nested trees and turn your plans and vision into managed work."; +} + +.login-main-title::before { + content: "Login"; +} + +.login-sub-heading::before { + content: "Create, tend and grow your trees of wonder and promise."; +} + +#new-to-app::before { + content: "New to amalati?"; +} + +.register-main-title::before { + content: "Create your account"; +} +.register-sub-heading::before { + content: "Join and start planting your trees in Amalati!"; +} diff --git a/amalati/theme.js b/amalati/theme.js new file mode 100644 index 0000000..3c4af15 --- /dev/null +++ b/amalati/theme.js @@ -0,0 +1,7 @@ +document.onload = function () { + const privacyPolicy = document.getElementById('privacy-policy'); + + if (privacyPolicy) { + privacyPolicy.innerHTML = 'By signing up you agree to the TheGardenPrivacy Policy Privacy Policy' + } +}