Sha256: 2e2fbc9d011e75da38208bbfd1192f2d259a5a8cedc48ddf2682cf3e7b3c1755

Contents?: true

Size: 1.48 KB

Versions: 7

Compression:

Stored size: 1.48 KB

Contents

<form method="post" id="{{ include.form_id | 'contact-form' }}" action="#" onsubmit="{{ include.onsubmit_callback | 'sendContactMessage' }}()" onreset="{{ include.onreset_callback | 'resetContactForm' }}()" >
    <div class="fields">
        <div class="field half">
            <label for="name">Name</label>
            <input type="text" name="{{ include.name_input_id | 'contact-name' }}" id="{{ include.name_input_id | 'contact-name' }}" required minlength="4" maxlength="64" />
        </div>
        <div class="field half">
            <label for="email">Email</label>
            <input type="email" name="{{ include.email_input_id | 'contact-email' }}" id="{{ include.email_input_id | 'contact-email' }}" required minlength="8" maxlength="64" />
        </div>
        <div class="field">
            <label for="message">Message</label>
            <textarea name="{{ include.message_input_id | 'contact-message' }}" id="{{ include.message_input_id | 'contact-message' }}" rows="4"vrequired minlength="16" maxlength="256" ></textarea>
        </div>
    </div>
    <ul class="actions">
        <li><div id="{{ include.recaptcha_widget_id | 'recaptcha-checkbox' }}" ></div></li>
        <li><input type="submit" id="{{ include.submit_input_id | 'contact-submit-button' }}" value="Send Message" class="button primary fa-envelope" disabled /></li>
        <li><input type="reset" id="{{ include.reset_input_id | 'contact-reset-button' }}" value="Reset" class="icon button fa-undo" /></li>
    </ul>
</form>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-ethereal-0.5.0 _includes/contact_form.html
jekyll-theme-ethereal-0.4.4 _includes/contact_form.html
jekyll-theme-ethereal-0.4.3 _includes/contact_form.html
jekyll-theme-ethereal-0.4.2 _includes/contact_form.html
jekyll-theme-ethereal-0.4.1 _includes/contact_form.html
jekyll-theme-ethereal-0.4.0 _includes/contact_form.html
jekyll-theme-ethereal-0.3.3 _includes/contact_form.html