-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
82 lines (65 loc) · 1.88 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
<!-- @include _top.html -->
<!-- @include _header.html -->
<div id="contact">
<div class="row">
<h3 class="page-title large-12 columns">Contact Us</h3>
</div>
<div class="row">
<div class="large-7 columns">
<form id="contact-form">
<fieldset>
<div class="row">
<div class="large-12 columns">
<label>Name</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Email</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Phone Number</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Order Number (If Applicable)</label>
<input type="text" >
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Message</label>
<textarea></textarea>
</div>
</div>
</fieldset>
<div class="row">
<div class="large-12 columns">
<input type="submit" class="primary-button" value="Send">
</div>
</div>
</form>
</div>
<div id="contact-sidebar" class="sidebar large-4 columns">
<section>
<h5>Contact Information</h5>
<p>[email protected]<br/>
1-800-222-2222<br/>
<p/>
</section>
<section>
<p>Get Chatham Chino Products right from the source on Cape Cod! Our products are available exclusively at Puritan Cape Cod. We have 4 convenient locations, so stop by next time you are on Cape!
<p/>
<h5><a href="<!-- @path stores.html -->">Store Locator</a></h5>
</section>
</div>
</div>
</div>
<!-- @include _footer.html -->
<!-- @include _bottom.html -->