diff options
-rw-r--r-- | templates/web/buckinghamshire/contact/submit.html | 21 |
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' %] |