aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2018-03-28 19:35:04 +0100
committerDave Arter <davea@mysociety.org>2018-04-03 12:44:25 +0100
commit53d1570bef66f53c36bd4e4e8507c26059edb761 (patch)
treef905e6f808c9b7ea3a364ed92c54948763f9c9b3
parent52e54dd2bfe7ff80495c77e483a15edac568f062 (diff)
[Buckinghamshire] Custom wording on contact submit page
-rw-r--r--templates/web/buckinghamshire/contact/submit.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/web/buckinghamshire/contact/submit.html b/templates/web/buckinghamshire/contact/submit.html
new file mode 100644
index 000000000..52494bab1
--- /dev/null
+++ b/templates/web/buckinghamshire/contact/submit.html
@@ -0,0 +1,21 @@
+[% INCLUDE 'header.html', bodyclass = 'fullwidthpage', title = loc('Contact Us') %]
+
+[% IF success %]
+
+ <div class="confirmation-header">
+ <h1>[% loc('Thank you for your message') %]</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 utm_content='contact form submitted' %]
+
+[% INCLUDE 'footer.html' %]