Sha256: af720751e7a689d5f8f1c9359744ee33b3f024efe20ae12c6571a880e577bb0d
Contents?: true
Size: 929 Bytes
Versions: 34
Compression:
Stored size: 929 Bytes
Contents
{% if contact.sent %} <p>Your message has been sent and we’ll get back to you soon.</p> {% else %} <form method="post" action="/contact"> <ul class="unstyled"> <li> <label for="name">Name</label> {{ contact | contact_input: 'name' }} </li> <li> <label for="email">Email</label> {{ contact | contact_input: 'email' }} </li> <li> <label for="subject">Subject</label> {{ contact | contact_input: 'subject' }} </li> <li> <label for="message">Message</label> {{ contact | contact_input: 'message' }} </li> <li> <label for="captcha">Spam check</label> <p>Please enter the characters from the image.</p> <div>{{ contact.captcha }}</div> {{ contact | contact_input: 'captcha' }} </li> <li> <button type="submit" name="submit" title="Send us an email">Send</button> </li> </ul> </form> {% endif %}
Version data entries
34 entries across 34 versions & 1 rubygems