forked from poole/hyde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
41 lines (35 loc) · 1.2 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
layout: default
title: Contact
custom_css: "contact.css"
custom_js: "contact.js"
---
<div class="posts">
<div class="post">
<h1 class="post-title">
{{ page.title }}
</h1>
<form method="post" action="https://formspree.io/[email protected]" onsubmit="return validate();">
<input type="hidden" name="_subject" value="CWftw.me: New Contact Submission!" />
<input type="hidden" name="_next" value="http://CWftw.me/thanks/" />
<div>
<label for="name">Name:</label>
<input id="name" type="text" name="name" />
<span class="required">*</span>
</div>
<div>
<label for="email">Email:</label>
<input id="email" type="email" name="_replyto" />
<span class="required">*</span>
</div>
<div>
<label for="body">Message:</label>
<textarea id="body" name="body" rows="10"></textarea>
<span class="required">*</span>
</div>
<div class="button">
<button type="submit">Send</button>
</div>
</form>
</div>
</div>