15 lines
536 B
Plaintext
Executable File
15 lines
536 B
Plaintext
Executable File
<#import "template.ftl" as layout>
|
|
<@layout.registrationLayout displayInfo=true; section>
|
|
<#if section = "header">
|
|
${msg("emailVerifyTitle")}
|
|
<#elseif section = "form">
|
|
<p class="instruction">${msg("emailVerifyInstruction1")}</p>
|
|
<#elseif section = "info">
|
|
<p class="instruction">
|
|
${msg("emailVerifyInstruction2")}
|
|
<br/>
|
|
<a href="${url.loginAction}">${msg("doClickHere")}</a> ${msg("emailVerifyInstruction3")}
|
|
</p>
|
|
</#if>
|
|
</@layout.registrationLayout>
|