-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
19 lines (17 loc) · 726 Bytes
/
contact.html
File metadata and controls
19 lines (17 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: page
title: Contact
---
<h2>Contact</h2>
<form class="col-sm-12 contact_page" action="https://formspree.io/Kelly.Wright@KellyInnovation.com" method="POST">
<div class="form-group">
<label class="col-sm-2" for="nameInput">Name</label>
<input type="text" name="name" class="col-sm-10 form-control" id="nameInput" placeholder="Name">
</div>
<div class="form-group">
<label for="emailInput">Email Address</label>
<input type="email" class="form-control" id="emailInput" placeholder="Email Address">
</div>
<textarea class="form-control" type="text" name="text" rows="5">Message</textarea>
<button type="submit" value="Send" class="btn btn-default contact-button">Submit</button>
</form>