blob: 5adb87e2d5e237cdd7257ae75cd05773b90a5f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Contact Us') %]
[% IF success %]
<div class="confirmation-header">
<h1>[% loc('Thank you for your feedback') %]</h1>
<p>[% loc('We’ll get back to you as soon as we can.') %]</p>
</div>
[% ELSE %]
<div class="confirmation-header confirmation-header--failure">
<h1>[% loc('Failed to send message') %]</h1>
<p>[% loc('Try emailing us directly:') %] <a href="mailto:[% contact_email %]">[% contact_email %]</a></p>
</div>
[% END %]
[% INCLUDE next_steps.html %]
[% INCLUDE 'footer.html' %]
|