diff --git a/public/buyersform/theme.css b/public/buyersform/theme.css new file mode 100644 index 0000000..47c31be --- /dev/null +++ b/public/buyersform/theme.css @@ -0,0 +1,72 @@ +.login-pf body { + margin: 0; + padding: 0; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background-size: cover; + background-repeat: no-repeat; + background-position: center; + transition: background-image 0.5s ease-in-out; + background-color: #f4f4f4; +} + +.login-pf-page .card-pf { + max-width: 440px !important; + margin: auto !important; +} + + +.login-pf-page .login-pf-header h1 { + background: #0559FA !important; +} + +.pf-c-button.pf-m-primary { + background: #0559FA !important; +} + +div#kc-registration span a:hover { + background: #83b451; +} + +#kc-header { + background: #ffffff; + display: none !important; +} + +.app-logo { + display: none !important; +} + +.login-pf-page .login-pf-page-header p::before { + display: none !important;; +} + +.login-main-title::before { + content: "Buyersform"; +} + +.login-sub-heading::before { + content: "Sign in to have unresistricted access."; +} + +#new-to-app::before { + content: ""; +} + +.register-main-title::before { + content: "Create your account"; +} +.register-sub-heading::before { + content: ""; +} + +.pf-c-form-control { + font-size: 14px; + border: none !important; + background-color: #F4f4f4 !important; + height: auto !important; + padding: 15px 25px !important; + border-radius: 5px; +} diff --git a/public/buyersform/theme.js b/public/buyersform/theme.js new file mode 100644 index 0000000..8f6387d --- /dev/null +++ b/public/buyersform/theme.js @@ -0,0 +1,6 @@ +const privacyPolicy = document.getElementById('privacy-policy'); + +if (privacyPolicy) { + privacyPolicy.innerHTML = 'By signing up you agree to the BuyersForm Policy Privacy Policy' +} +