-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
18 lines (17 loc) · 734 Bytes
/
contact.html
File metadata and controls
18 lines (17 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: page
title: Contact Me
permalink: /contact/
---
<div class="py2">
<form action="https://formspree.io/{{ site.email }}" method="POST" class="form-stacked">
<input type="text" name="email" class="field-light" placeholder="Email Address">
<textarea type="text" name="content" class="field-light" rows="5" placeholder="What would you like to say?"></textarea>
<input type="hidden" name="_next" value="{{ site.baseurl }}/thanks/" />
<input type="hidden" name="_subject" value="New submission!" />
<input type="text" name="_gotcha" style="display:none" />
<button type="submit" class="button button-blue button-big mobile-block">
<i class="fa fa-send"></i> Send
</button>
</form>
</div>