You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
686 B

2 weeks ago
<#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>