-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
28 lines (26 loc) · 981 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: Contact Us
permalink: /contact/
heading: Get in Touch!
subheading:
layout: default
---
<h3>Contact Us!</h3>
<p>Have something to say? Tell us here and we'll be sure to get back to you!</p>
<form action="https://formspree.io/contact@mannrobo.org" method="POST">
<div class="form-group">
<label for="name" class="sr-only">Name</label>
<input type="text" id="name" class="form-control" name="name" placeholder="Name">
</div>
<div class="form-group">
<label for="email" class="sr-only">Email</label>
<input type="email" id="email" class="form-control" name="email" placeholder="Email">
</div>
<div class="form-group">
<label for="Message" class="sr-only">Message</label>
<textarea type="Message" id="Message" class="form-control" name="Message" placeholder="Message"></textarea>
</div>
<div class="form-group">
<input class="button" value="Send message" type="submit">
</div>
</form>