-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcontact.html
executable file
·36 lines (35 loc) · 1.37 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
---
layout: page
title: "Contact"
description: "Have questions? I have answers (maybe)."
header-img: "img/contact-bg.jpg"
---
<p>Want to get in touch with me? Fill out the form below to send me a message and I will get back to you</p>
<form name="sentMessage" id="contactForm">
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Name</label>
<input type="text" class="form-control" placeholder="Name" name="name" required>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Email Address</label>
<input type="email" class="form-control" placeholder="Email Address" name="_replyto" required>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Message</label>
<textarea rows="5" class="form-control" placeholder="Message" name="message" required></textarea>
</div>
</div>
<input type="text" name="_gotcha" style="display:none"/>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<button type="submit" class="btn btn-default" value="Send">Send</button>
</div>
</div>
</form>