Sha256: a1de949fd1ddcf4e6eb343a76e26ba929f09cc16a2efcca9316722e1a09f5dec

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

<div>
  {% if contact.sent %}
  <h1>Thank You!</h1>
  <p>Your message has been sent and we will try to respond within 24 business hours.</p>      
  {% else %}
  <h1>{{ page.name }}</h1>
  <form method="post" action="/contact">
    <ul>
      <li>
        <label>Your Name:</label>
        {{ contact | contact_input: 'name' }}
      </li>
      <li>
        <label>Your Email:</label>
        {{ contact | contact_input: 'email' }}                
      </li>
      <li>
        <label>Subject:</label>
        {{ contact | contact_input: 'subject' }}
      </li>
      <li>
        <label>Message:</label>
        {{ contact | contact_input: 'message' }}
      </li>
      <li id="captcha_img" class="clearfix">
        <label>Spam Check:</label>
        <p>Please enter the characters from the image.</p> 
        {{ contact | contact_input: 'captcha' }}
        <div id="captcha_phrase">{{ contact.captcha }}</div>       
      </li>
      <li>
        <button type="submit" name="submit" class="button">Send Message</button>
      </li>
    </ul>
  </form>
  {% endif %}
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dugway-0.5.3 spec/fixtures/theme/contact.html
dugway-0.5.2 spec/fixtures/theme/contact.html
dugway-0.5.1 spec/fixtures/theme/contact.html
dugway-0.5.0 spec/fixtures/theme/contact.html