Contact Us (&)(!!)
{% capture Contact_Intro %}
Please fill out the form below for any questions you have.
{% endcapture %}
{% capture Contact_Success_Message %}
Your message has been sent and we’ll get back to you soon.
{% endcapture %}
{{ ---- END EXTRA THEME SETTINGS AND CONTROLS ---- }}
{% if errors != blank %}-
{% for error in errors %}
- {% if forloop.length != 1 %}• {% endif %}{{ error }} {% endfor %}
{% if contact.sent %}
{% else %}
Your Name*
{{ contact | contact_input: 'name' | replace: "id=", "required='' data-validation-required-message='Please enter your name.' placeholder='Name' class='form-control' id=" }}
Your Email*
{{ contact | contact_input: 'email' | replace: "id=", "required='' data-validation-required-message='Please enter your e-mail.' placeholder='E-mail' class='form-control' id=" }}
Subject
{{ contact | contact_input: 'subject' | replace: "id=", "required='' data-validation-required-message='Please enter your subject.' placeholder='Subject' class='form-control' id=" }}
Your Message*
{{ contact | contact_input: 'message' | replace: "id=", "rows='7' required='' data-validation-required-message='Please enter your message.' placeholder='Message' class='form-control' id=" }}
{{ contact | contact_input: 'captcha' | replace: "id=", "required='' data-validation-required-message='Please enter the characters from the image.' placeholder='Captcha' class='form-control' id=" }}
{{ contact.captcha }}
Submit
{% endif %}