- adding a default theme for keycloak - set default credential when user sign in Signed-off-by: James <james@jan.ai>
19 lines
647 B
Plaintext
19 lines
647 B
Plaintext
<#import "template.ftl" as layout>
|
|
<#import "components/atoms/alert.ftl" as alert>
|
|
<#import "components/atoms/link.ftl" as link>
|
|
|
|
<@layout.registrationLayout displayMessage=false; section>
|
|
<#if section="header">
|
|
${kcSanitize(msg("errorTitle"))?no_esc}
|
|
<#elseif section="form">
|
|
<@alert.kw color="error">${kcSanitize(message.summary)?no_esc}</@alert.kw>
|
|
<#if !skipLink??>
|
|
<#if client?? && client.baseUrl?has_content>
|
|
<@link.kw color="secondary" href=client.baseUrl size="small">
|
|
${kcSanitize(msg("backToApplication"))?no_esc}
|
|
</@link.kw>
|
|
</#if>
|
|
</#if>
|
|
</#if>
|
|
</@layout.registrationLayout>
|