Styling a page from custom Freemarker Template #737
Answered
by
garronej
waynemorphic
asked this question in
Q&A
-
I have gone through the explainer on Styling a custom page but I have yet to get an idea or solution for my problem. I have a custom Freemarker template, call it |
Beta Was this translation helpful? Give feedback.
Answered by
garronej
Dec 5, 2024
Replies: 1 comment 5 replies
-
Hello, If you share more details I can give you more precise instructions |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I strongly recommend you don't do that unless you precisely understand why you're doing it this way. It's not common at all to implement cookie consent directly on the Keycloak login page, and here’s why:
Separate Domain for Login: Keycloak pages are typically hosted on a different domain than your main application. This means if you implement cookie consent on the login page, the user would likely need to give consent again on the main application, which is redundant and could lead to a frustrating user experience.
Cookies Set by Keycloak: The cookies set by Keycloak during the authentication process are generally related to session management and do not require user consent. These c…