-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
28 lines (26 loc) · 1001 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
---
title: AnyFetch | Contact
layout: main
---
<div class="contact anyfetch-container">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="header-group">
<h1 class="title">Contact AnyFetch by email</h1>
</div>
<form action="//formspree.io/contact@anyfetch.com" method="POST">
<input class="form-control" type="text" name="_gotcha" style="display:none" />
<div class="form-group">
<input class="form-control" type="email" name="_replyto" placeholder="Your email" required />
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" placeholder="Your message" required></textarea>
</div>
<input type="hidden" name="_next" value="http://anyfetch.com/thanks.html"/>
<input class="btn button-transparent" type="submit" value="Send">
</form>
</div>
</div>
</div>
</div>