-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (60 loc) · 2.46 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
---
layout: page
---
<!-- Section: Contact -->
<section id="contact">
<div class="wrapper">
<h1><span class="material-icons">email</span>Contact</h1>
<div class="content-and-side-content">
<div>
<p>We would love to hear from you! Please fill in the forms below and someone from the project
will get back to you.</p>
<hr />
<!-- Message sent message -->
<div class="sent message">
<h2>Message Sent</h2>
<p>Thanks the for the message! Someone will be in touch soon.</p>
</div>
<!-- Contact form -->
<form id="contact-form" method="post" action="https://formspree.io/xpzdwpez">
<label>Name</label>
<input type="text"
name="name"
placeholder="John Smith"
required />
<label>Email</label>
<input type="email"
name="email"
placeholder="[email protected]"
required />
<label>Subject</label>
<input type="text"
name="query"
placeholder="General Question"
required />
<label>Message</label>
<textarea placeholder="Please enter your message here"
name="message"
required
minlength="4"></textarea>
<button type="submit" disabled>Send Message</button>
<input name="subject" type="hidden" value="SYCLOPS Contact Request" />
<input type="hidden" name="_next" value="{{page.url}}#sent" />
</form>
</div>
<div>
<h2>Social Media</h2>
<ul class="styled-list">
<li>
<a href="{{site.twitter}}" target="_blank" rel="noopener">Twitter</a>
</li>
<li>
<a href="{{site.youtube}}" target="_blank" rel="noopener">YouTube</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Import contact JS -->
<script src="static/js/contact.js"></script>