mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
29 lines
1.4 KiB
<form id="comment-form" method="post" action="https://api.staticman.net/v1/entry/{{ site.repository }}/{{ site.staticman.branch }}/comments">
|
|
<fieldset>
|
|
<label for="comment-form-message">Comment</label>
|
|
<textarea type="text" rows="3" id="comment-form-message" name="fields[message]" tabindex="1"></textarea>
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="comment-form-name">Name</label>
|
|
<input type="text" id="comment-form-name" name="fields[name]" tabindex="2" />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="comment-form-email">Email address</label>
|
|
<input type="email" id="comment-form-email" name="fields[email]" tabindex="3" />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="comment-form-url">Website</label>
|
|
<input type="url" id="comment-form-url" name="fields[url]" tabindex="4"/>
|
|
</fieldset>
|
|
<fieldset class="hidden" style="display:none;">
|
|
<!-- used by Staticman to generate filenames for each comment -->
|
|
<input type="hidden" name="options[slug]" value="{{ page.slug }}">
|
|
<!-- honey pot field used to filter out spam -->
|
|
<label for="comment-form-location">Not used. Leave blank if you are a human.</label>
|
|
<input type="text" id="comment-form-location" name="fields[hidden]" autocomplete="off"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<button type="submit" id="comment-form-submit" tabindex="5">Submit Comment</button>
|
|
</fieldset>
|
|
</form>
|
|
<!-- End new comment form -->
|
|
|