jan/conf/keycloak_theme/keywind/login/login-idp-link-confirm.ftl
James 2704301fd1 chore: update configuration files
- adding a default theme for keycloak
- set default credential when user sign in

Signed-off-by: James <james@jan.ai>
2023-09-06 07:54:13 -07:00

19 lines
686 B
Plaintext

<#import "template.ftl" as layout>
<#import "components/atoms/button.ftl" as button>
<#import "components/atoms/form.ftl" as form>
<@layout.registrationLayout; section>
<#if section="header">
${msg("confirmLinkIdpTitle")}
<#elseif section="form">
<@form.kw action=url.loginAction method="post">
<@button.kw color="primary" name="submitAction" type="submit" value="updateProfile">
${msg("confirmLinkIdpReviewProfile")}
</@button.kw>
<@button.kw color="primary" name="submitAction" type="submit" value="linkAccount">
${msg("confirmLinkIdpContinue", idpDisplayName)}
</@button.kw>
</@form.kw>
</#if>
</@layout.registrationLayout>