-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterms.ftl
More file actions
17 lines (17 loc) · 894 Bytes
/
terms.ftl
File metadata and controls
17 lines (17 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<#import "template.ftl" as layout>
<@layout.registrationLayout displayMessage=false; section>
<#if section = "header">
${msg("termsTitle")}
<#elseif section = "form">
<div id="renku-terms-wrapper">
<div id="kc-terms-text">
${msg("termsText")?no_esc}
</div>
<form class="form-actions" action="${url.loginAction}" method="POST">
<input class="${properties.kcButtonClass!} ${properties.kcButtonDefaultClass!} ${properties.kcButtonLargeClass!}" name="cancel" id="kc-decline" type="submit" value="${msg("doDecline")}"/>
<input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" name="accept" id="kc-accept" type="submit" value="${msg("doAccept")}"/>
</form>
<div class="clearfix"></div>
</div>
</#if>
</@layout.registrationLayout>