-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
52 lines (50 loc) · 2.36 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
---
layout: contact
title: Contact
permalink: /contact/
---
<div id="contactwrap"></div>
<div class="container mtb">
<div class="row">
<div class="col-lg-8">
<h1>Just Get In Touch!</h1>
<p>Having issues or questions? Use the issues page on <a href="https://github.com/Geodan/gost/issues">GitHub</a></br>Want to chat? Find us on <a href="https://slackinvitergost.herokuapp.com/">Slack</a>.</br>Or send us a message directly by filling in the form below:</p>
<div class="container">
<form id="contactform" method="POST" onsubmit="return send()">
<div class="form-group contact-form">
<label for="name">Name:</label>
<input id="name" type="text" name="name" class="form-control" ><br/>
<label for="email">Your Email Address:</label>
<input id="email" type="email" name="_replyto" class="form-control"><br/>
<input type="hidden" name="_subject" value="Website contact" class="form-control" />
<label for="message">Message:</label>
<textarea id="message" name="message" class="form-control"></textarea><br/>
<input type="text" name="_gotcha" style="display:none" /><br/>
<input type="submit" value="Send" class="btn btn-theme"><br/>
</div>
</form>
</div>
<script>
var contactform = document.getElementById('contactform');
contactform.setAttribute('action', '//qfqoqrqmqsqpqrqqqeqeq.qiqoq/' + 'qtqimq.qeqbqbqeqn' + '@q' + 'gqeqoqdaqnq' + '.' + 'qnqlq');
</script>
<script>
function send() {
var cf = document.getElementById('contactform');
var a = cf.getAttribute('action');
cf.setAttribute('action', a.replace(/q/g, ""));
return true;
}
</script>
</div>
<div class="col-lg-4">
<h4>Our Address</h4>
<div class="hline"></div>
<p>
{% for line in site.address.first.lines %}
{{ line }} <br>
{% endfor %}
</p>
</div>
</div>
</div>