blob: 781862866410c33cd5a782f2109ca63b72c53707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[% INCLUDE 'header.html', title = loc('Contact Us') %]
<h1>[% loc('Contact the team') %]</h1>
[% IF success %]
<p>Thank you for letting us know about this report. We will review, and if
necessary, edit the report, or remove it from the site. You can contact us at
<a href="mailto:[% contact_email %]">[% contact_email %]</a>.
[% ELSE %]
<p>
[% tprintf( loc('Failed to send message. Please try again, or <a href="mailto:%s">email us</a>.'), contact_email ) %]
</p>
[% END %]
[% INCLUDE 'footer.html' %]
|