Intial Commit
This commit is contained in:
47
contact.html
Normal file
47
contact.html
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
layout: page
|
||||
title: Say Hello
|
||||
permalink: /contact/
|
||||
tags: contact
|
||||
---
|
||||
|
||||
<div class="py2">
|
||||
{% if site.ajaxify_contact_form %}
|
||||
<form class="form-stacked">
|
||||
<label>
|
||||
Email
|
||||
<input type="text" name="email" class="field-light" placeholder="{{ site.text.contact.email | default: "Email Address" }}">
|
||||
</label>
|
||||
|
||||
<label>
|
||||
Content
|
||||
<textarea type="text" name="content" class="field-light" rows="5" placeholder="{{ site.text.contact.content | default: "What would you like to say?" }}" style="resize: vertical"></textarea>
|
||||
</label>
|
||||
|
||||
<input type="text" name="_gotcha" style="display:none" />
|
||||
|
||||
<button type='submit' class="button button-blue button-big mobile-block">{{ site.text.contact.submit | default: "Say Hello" }}</button>
|
||||
</form>
|
||||
{% else %}
|
||||
<form action="https://formspree.io/{{ site.email }}" method="POST" class="form-stacked">
|
||||
<label>
|
||||
Email
|
||||
<input type="text" name="email" class="field-light" placeholder="{{ site.text.contact.email | default: "Email Address" }}">
|
||||
</label>
|
||||
<label>
|
||||
Content
|
||||
<textarea type="text" name="content" class="field-light" rows="5" placeholder="{{ site.text.contact.content | default: "What would you like to say?" }}" style="resize: vertical"></textarea>
|
||||
</label>
|
||||
|
||||
<input type="hidden" name="_next" value="{{ site.baseurl }}/thanks/" />
|
||||
<input type="hidden" name="_subject" value="{{ site.text.contact.subject | default: "New submission!" }}" />
|
||||
<input type="text" name="_gotcha" style="display:none" />
|
||||
|
||||
<input type="submit" class="button button-blue button-big mobile-block" value="{{ site.text.contact.submit | default: "Say Hello" }}">
|
||||
</form>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if site.ajaxify_contact_form %}
|
||||
{% include ajaxify_content_form.html %}
|
||||
{% endif %}
|
Reference in New Issue
Block a user