blob: 7d38f9d67e35815d3658f1d3c5a46abe52b85371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Create a report') %]
<div class="confirmation-header confirmation-header--inbox">
<h1>[% loc("Nearly done! Now check your email…") %]</h1>
<p>
[% IF email_type == 'problem' %]
[% loc("Click the link in our confirmation email to publish your problem.") %]
[% ELSIF email_type == 'update' %]
[% loc("Click the link in our confirmation email to publish your update.") %]
[% ELSIF email_type == 'alert' %]
[% loc("Click the link in our confirmation email to activate your alert.") %]
[% END %]
</p>
<p>
[% loc("Can’t find our email? Check your spam folder – that’s the solution 99% of the time.") %]
</p>
</div>
[% INCLUDE 'footer.html' %]
|