This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
54 lines (51 loc) · 1.54 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
---
title: Contact
layout: default
order: 7
menu: main
bodyClass: contact
---
<div class="jumbotron">
<div class="container">
<header>
<h1>{{page.title}}</h1>
</header>
</div>
</div>
<div class="container">
<h2>Send Us a Message</h2>
<form class="form-horizontal" action="https://phpsc-emailer.herokuapp.com/contact" method="post">
<div class="form-group">
<label for="from" class="col-sm-2 control-label">
Your email
</label>
<div class="col-sm-6">
<input type="email" name="from" id="from" class="form-control" required>
</div>
</div>
<div class="form-group">
<label for="message" class="col-sm-2 control-label">
Your message
</label>
<div class="col-sm-6">
<textarea name="message" id="message" class="form-control" required rows="10"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="submit" class="btn btn-primary" value="Send">
</div>
</div>
</form>
<h3>Social Media</h3>
<ul class="list-unstyled">
{% for social in site.social %}
<li>
<i class="fa fa-{{ social.title }} fa-2x fa-fw"></i>
<a href="{{ social.url }}" title="{{ social.title | capitalize }}">
{{ social.title | capitalize }}
</a>
</li>
{% endfor %}
</ul>
</div>