blob: 01f04a107ea379f69dcb4808874b0e1f5e96357b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<div id="report-created-header" data-role="header">
<a class="ui-btn-left">[% loc('Home') %]</a>
<h1>[% loc('Report Created') %]</h1>
</div>
<div data-role="content">
<% if ( typeof email_confirm != 'undefined' && email_confirm === 1 ) { %>
<h3>[% loc('Confirmation email sent') %]</h3>
<p>
[% loc("We've sent you a confirmation email which may take a few minutes to arrive. Once it arrives click the link in the email to confirm your report.") %]
</p>
<% } else { %>
<h3>[% loc('Thanks. Your report will be sent to the authorities immediately.') %]</h3>
<p class="center"><input type="button" data-theme="a" id="open_report" value="[% loc('View it on the site') %]"></p>
<% } %>
<div class="bottom-btn">
<input type="button" id="id_report_another" data-theme="a" value="[% loc('Start new report') %]" >
</div>
</div>
|