-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
27 lines (19 loc) · 800 Bytes
/
contact.html
File metadata and controls
27 lines (19 loc) · 800 Bytes
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
---
layout: page
title: Contact
---
<form action="https://formspree.io/huntercollege.acm.chapter@gmail.com" method="POST">
<div class="form-group row">
<div class="col-md-6">
<input class="form-control" type="text" name="name" placeholder="Name" required>
</div>
<div class="col-md-6">
<input class="form-control" type="email" name="_replyto" placeholder="E-mail Address" required>
</div>
</div>
<div class="form-group">
<input class="form-control" type="text" name="subject" placeholder="Subject" required></input>
</div>
<textarea rows="8" class="form-control mb-3" name="message" placeholder="Message" required></textarea>
<input class="btn btn-success" type="submit" value="Send">
</form>