DEV Community

Cover image for How to change default title in client login screen using Keycloak?
Nirmal Ram
Nirmal Ram

Posted on

How to change default title in client login screen using Keycloak?

In your realm settings > HTML Display name

replace:

<div class="kc-logo-text"><span>Keycloak</span></div>
Enter fullscreen mode Exit fullscreen mode

with your Application name that you wish to show on your login screen. you can also provide HTML code for using image instead of title

use

<img alt="..ALT-TEXT.." src="../../SOURCE" width="400"/> 
Enter fullscreen mode Exit fullscreen mode

to insert your logo instead

Happy Hacking..

Top comments (0)