blob: 16dfbb11ca31101214a0949284c4c148baf578a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[% INCLUDE 'header.html', title => loc('Confirm account') %]
[% IF token_not_found %]
<h1>[% loc('Error') %]</h1>
<p>We have not been able to confirm your account - sorry. This may be because:</p>
<ul>
<li>Link too old or already used</li>
<li>URL not copied correctly</li>
[%# FIXME - add more reasons here %]
</ul>
[% ELSE %]
<h1>[% loc('Please check you email') %]</h1>
<p>We have sent you an email containing a link to confirm your account.</p>
<p>If you do not receive the email in the next few minutes please check your spam folder.</p>
[% END %]
[% INCLUDE 'footer.html' %]
|