-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
62 lines (58 loc) · 2.4 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
---
layout: contact
title: Contact
permalink: /contact/
---
<!-- GOOGLE ANALYTICS WEBPAGE TRACKING -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-102193034-1', 'auto');
ga('send', 'pageview');
</script>
<!-- /.GOOGLE ANALYTICS WEBPAGE TRACKING -->
<div id="contactwrap"></div>
<div class="container mtb">
<div class="row">
<div class="col-lg-8">
<h4>Ready to achieve Kaito masteries? Prove it!</h4>
<div class="hline"></div>
<p>{{ site.about }}</p>
<form role="form">
<div class="form-group">
<label for="InputName1">Your Name</label>
<input type="text" class="form-control" id="exampleInputName1">
</div>
<div class="form-group">
<label for="InputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1">
</div>
<div class="form-group">
<label for="InputSubject1">Subject</label>
<input type="text" class="form-control" id="exampleInputSubject1">
</div>
<div class="form-group">
<label for="message1">Message</label>
<textarea class="form-control" id="message1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-theme">Submit</button>
</form>
</div><! --/col-lg-8 -->
<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>
<p>
Email: {{ site.email }}<br/>
Tel: {{ site.tel }}
</p>
<p>It's very hard to meet the Kaito Masters but you can try to walk long the Cloud Mountains path to find them.</p>
</div>
</div><! --/row -->
</div><! --/container -->