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.

23 lines
763 B

<#import "template.ftl" as layout>
<#import "components/atoms/button.ftl" as button>
<#import "components/atoms/button-group.ftl" as buttonGroup>
<#import "components/atoms/form.ftl" as form>
<@layout.registrationLayout displayMessage=false; section>
<#if section="header">
${msg("termsTitle")}
<#elseif section="form">
${kcSanitize(msg("termsText"))?no_esc}
<@form.kw action=url.loginAction method="post">
<@buttonGroup.kw>
<@button.kw color="primary" name="accept" type="submit">
${msg("doAccept")}
</@button.kw>
<@button.kw color="secondary" name="cancel" type="submit">
${msg("doDecline")}
</@button.kw>
</@buttonGroup.kw>
</@form.kw>
</#if>
</@layout.registrationLayout>