Have a question?

{{ form:contact_form }} {{# First let's check if this is after a submission, and if so, was it successful. If it was, just show the success message. After all, we don't want them submitting again once they've gotten in touch! #}} {{ if success }}
Thank you for your message. It has been sent.
{{ else }} {{# If we weren't successful, show any errors. If a fresh page load, there's no errors, so do nothing. #}} {{ if errors }}
{{ errors }} {{ value }}
{{ /errors }}
{{ /if }} {{# Loop through and render the form inputs #}}
{{# Add a recaptcha v2 checkbox here #}}
{{ captcha }} {{ if error:captcha }}

{{ error:captcha }}

{{ /if }}
{{# Add the honeypot field #}}
{{ /if }} {{ /form:contact_form }}