forked from eriluks/resume.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (28 loc) · 1009 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
31
32
33
---
title: Contact
heading: Want me on your team?
subtitle: Get in touch with me.
---
<section class="diagonal">
<div class="container">
<form action="{{ site.baseurl }}/contact-success/" method="post" class="contact-form">
<input type="hidden" name="_to" value="support@example.com" />
<input type="text" name="_gotcha" style="display: none;" />
<div class="halves">
<div>
<label for="name">First Name</label>
<input type="text" name="first-name" id="first-name" placeholder="Helen" />
</div>
<div>
<label for="name">Last Name</label>
<input type="text" name="last-name" id="last-name" placeholder="Moore" />
</div>
</div>
<label for="email">Email Address</label>
<input type="email" name="email" id="email" placeholder="name@example.com" required />
<label for="message">Message</label>
<textarea name="message" id="message" placeholder="Hi There..."></textarea>
<input type="submit" value="Send Message" />
</form>
</div>
</section>