-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
37 lines (35 loc) · 1.34 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
---
layout: page
title: Contact
permalink: /contact/
---
<article class="post-content">
<div class="wrapper">
<div class="contact">
<p>Did I say something that raised a question?
Do you just want to chat? Shoot me a message on twitter @woutersteen.</p>
<form action="https://getsimpleform.com/messages?form_api_token=e9260b7adc3c54105e90d940b6c03960" method="post">
<!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
<input type='hidden' name='redirect_to' value='http://www.steenmeijer.nu/thanks/' />
<!-- all your input fields here.... -->
<div class="form-group">
<label for="name">Name</label>
<input type='text' name='Name' class="form-control" placeholder="Name" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type='text' name='Email' class="form-control" placeholder="Email" />
</div>
<div class="form-group">
<label for="company">Company</label>
<input type='text' name='Company' class="form-control" placeholder="Company" />
</div>
<div class="form-group">
<label for="comment">Comment</label>
<textarea class="form-control" rows="3" placeholder="Comment"></textarea>
</div>
<input type='submit' value='Send' class="btn btn-default"/>
</form>
</div>
</div>
</article>