-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
executable file
·86 lines (72 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: page
title: Contact Us
description: WE'd love to hear from YOU!
background: '/img/contact-bg.jpg'
form: true
---
<p><b>Connect to social platforms or leave us a message here. We will get back to you ASAP!</b></p>
<ul class="list-inline text-center">
{% if site.email %}
<li class="list-inline-item">
<a href="mailto:{{ site.email | encode_email }}">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="far fa-envelope fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{% endif %}
<li class="list-inline-item">
<a href="{{ site.discord_link }}">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-discord fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="{{site.linkedin_link}}">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="{{ site.github_link }}">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<form action="https://docs.google.com/forms/u/0/d/e/1FAIpQLSfX2eMW8InjQMwXqHl8Uk1Xk8-GlwJ275CarAFL-0itDGtBwg/formResponse" method="POST" id="mG61Hd">
<div class="control-group">
<div class="form-group floating-label-form-group controls">
<label>Your Name</label>
<input type="text" name="entry.114587472" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls">
<label>Email Address</label>
<input type="email" name="entry.1028074273" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="control-group">
<div class="form-group floating-label-form-group controls">
<label>Message</label>
<textarea rows="5" name="entry.1182283417" class="form-control" placeholder="Type your message here" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="form-group">
<button type="submit" class="btn btn-primary" id="sendMessageButton">Submit</button>
</div>
</form>