-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
30 lines (29 loc) · 884 Bytes
/
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
---
layout: post
title: Get in Touch
short-title: Contact
class: contact
permalink: /contact/
nav-show: false
---
<form action="https://formspree.io/[email protected]" method="POST">
<div class="form-row">
<label>Name:</label>
<input type="name" name="name">
</div>
<div class="form-row">
<label>Email:</label>
<input type="email" name="email">
</div>
<div class="form-row">
<label>Message:</label>
<textarea name="message"></textarea>
</div>
<div class="form-row">
<input type="hidden" name="_next" value="http://palatedeck.com/contact-sent/" />
<input type="hidden" name="_subject" value="Your message to the Palate Deck" />
<input type="text" name="_gotcha" style="display:none" />
<input type="hidden" name="_cc" value="[email protected]" />
<button type="submit" class="button">Send</button>
</div>
</form>