forked from Zhujianer/zhujianer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
73 lines (63 loc) · 3.32 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
---
layout: default
title: 联系我们
---
{% include nav.html %}
<div id="contact-page" class="page">
<div class="container">
<img class="center-logo" src="img/logo-no-background.png" />
<h2>联系我们</h2>
<h4 class="text-center">[email protected]</h4>
<div class="row">
<div class="col-sm-6 col-xs-12 col-sm-offset-3" id="contact-form">
<form class="form-horizontal" data-toggle="validator" method="POST" action="//formspree.io/[email protected]">
<input type="hidden" name="_subject" value="竹尖儿上有人找你!" />
<input type="hidden" name="_next" value="http://zhujianer.com/contact-success.html" />
<div class="form-group">
<div class="row">
<div class="col-sm-4">
<label for="msg-name" class="control-label">姓名:</label>
</div>
<div class="col-sm-8">
<input type="text" class="form-control" name="name" id="msg-name" data-error="请告诉我们怎么称呼您?" required/>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-sm-4">
<label for="_replyto" class="control-label">电子邮箱:</label>
</div>
<div class="col-sm-8">
<input type="email" class="form-control" name="_replyto" id="_replyto" data-error="邮件地址不对哟!" required/>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-sm-4">
<label for="msg-phone" class="control-label">联系电话:</label>
</div>
<div class="col-sm-8">
<input type="text" class="form-control" name="phone" id="msg-phone" pattern="^([-0-9]){8,}$" data-error="电话的格式不对呢!"/>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col-sm-12">
<textarea class="form-control" name="message" id="msg" rows="5" placeholder="有什么问题尽管砸吧,欢迎调戏!" data-error="您想对我们说什么呢?" required></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<input type="submit" class="btn btn-primary" value="发送"/>
</form>
</div>
</div>
</div>
</div>
{% include footer.html %}