-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
73 lines (72 loc) · 2.87 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: contact
title: Contact
permalink: /contact
---
<section class="top-main">
<div class="animated fadeInUp">
<h1><strong>Send me your feeback!</strong></h1>
</div>
</section>
<!-- contact form start -->
<section id="contact-form">
<div class="container">
<!-- modify this form HTML and place wherever you want your form -->
<!-- your other form fields go here -->
<div class="modal fade" id="submission_msg" tabindex="-1" role="dialog" aria-labelledby="SubmissionMsg" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close btn-close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<h3>Your submission has been sent</h3>
<br />
<p>Thank you for your registration!</p>
<p>I will get back to you shortly.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<form class="row" id="contact_form" sendTo="https://formspree.io/f/xjvpeoea">
<div class="col-md-6 col-sm-12">
<div class="block">
<div class="form-group">
<input id="first_name" name="first_name" type="text" class="form-control" placeholder="First Name">
</div>
<div class="form-group">
<input id="last_name" name="last_name" type="text" class="form-control" placeholder="Last Name">
</div>
<div class="form-group">
<input type="email" id="email" name="email" class="form-control" placeholder="E-mail address">
</div>
<div class="inputWithMsg">
<div class="form-group">
<input type="email" id="email_confirmation" name="email_confirmation" class="form-control" value="" placeholder="Confirm E-mail address" required/>
</div>
<div class="p-2 formWarning" id="emailNoMatch">
E-mails don't match.
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="block">
<form>
<div class="form-group">
<input type="text" name="_gotcha" style="display:none" />
<input type="text" id="subject" name="subject" class="form-control" placeholder="Subject">
</div>
<div class="form-group-2">
<textarea id="message" name="message" class="form-control" rows="3" placeholder="Your Message"></textarea>
</div>
<button class="btn btn-default" type="submit">Send</button>
</div>
</div>
</form>
</div>
</section>
<!-- Call to action Start -->