-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
176 lines (163 loc) · 7.24 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
---
layout: "default"
title: "Contact Us"
permalink: "/contact/"
loadMapEsentials: true
loadExtraJs: ['hlf', 'hlf.forms', 'local.contact']
initNamespace: true
description: "Contact the Healthy, Lean and Fit team with any questions. We can help you choose the right Isagenix products for your lifestyle or with your Isagenix Business."
---
<div id="content-wrapper">
<!-- titlebar -->
{% include title-bar.html %}
<!-- end titlebar -->
<!-- our location header -->
<div class="container">
<div class="sixteen columns">
<h3 class="headline">Our Location</h3>
<span class="line" style="margin-bottom: 35px;"></span>
<div class="clearfix"></div>
</div>
</div>
<!-- end our location header -->
<!-- map -->
<div class="container">
<div class="sixteen columns">
<!-- google maps -->
<section class="google-map-container">
<div id="googlemaps" class="google-map google-map-full"></div>
</section>
<!-- end google maps -->
</div>
</div>
<!-- end map -->
<!-- contact form + information -->
<div class="container">
<!-- form -->
<div class="twelve alt columns">
<h3 class="headline">Contact Form</h3>
<span class="line" style="margin-bottom: 35px;"></span>
<div class="clearfix"></div>
<section id="contact">
<!-- Success Message -->
<div class="notification closeable" style="display: none;">
<div class="hlf-msg">
<!-- insert via js -->
</div>
<a class="close" href="#"></a>
</div>
<!-- Form -->
<form method="post" action="api.healthyleandandfit.com" id="hlf-leadform" onsubmit="return false;">
<input type="hidden" name="action" value="put" />
<input type="hidden" name="method" value="contact_lead" />
<fieldset>
<div>
<label for="name" accesskey="N">
Name:
<span>*</span>
</label>
<input name="name" type="text" id="name" class="required" />
</div>
<div>
<label for="telephone" accesskey="T">
Telephone:
<span>*</span>
</label>
<input name="telephone" type="text" id="telephone" class="required is-telephone" />
</div>
<div>
<label for="email" accesskey="E">
Email:
</label>
<input name="email" type="text" id="email" class="is-email" />
</div>
<div>
<label for="message" accesskey="M">
Message:
</label>
<textarea name="message" cols="40" rows="3" id="message" spellcheck="true"></textarea>
</div>
</fieldset>
<input type="submit" class="hlf-submit" value="Send Message" />
<img src="/images/ajax-loader.gif" class="loader" style="display: none;" />
<div class="clearfix"></div>
</form>
</section>
</div>
<!-- end form -->
<!-- information -->
<div class="four columns">
<div class="widget" style="margin-top:0;">
<h3 class="headline">Information</h3>
<span class="line"></span>
<div class="clearfix"></div>
<p>Have a question? <strong>Send a message.</strong> Need motivation? <strong>Send a message.</strong> Want to change your life? <strong>Send a message.</strong></p>
<ul class="contact-informations">
<li>
<span class="address">{{ site.addressLine1 }}</span>
</li>
<li>
<span class="address">{{ site.addressLine2 }}</span>
</li>
<li>
<span class="address">{{ site.addressLine3 }}</span>
</li>
</ul>
<ul class="contact-informations second">
<li>
<i class="icon-user"></i>
<p>{{ site.footerTelephone }}</p>
</li>
<li>
<i class="icon-envelope-alt"></i>
<p>{{ site.footerEmail }}</p>
</li>
<li>
<i class="icon-globe"></i>
<p>{{ site.mainUrl }}</p>
</li>
</ul>
</div>
<div class="widget">
<h3 class="headline">Social Media</h3>
<span class="line" style="margin-bottom: 25px;"></span>
<div class="clearfix"></div>
<ul class="social-icons">
<li>
<a class="twitter" href="#">
<i class="icon-twitter"></i>
</a>
</li>
<li>
<a class="dribbble" href="#">
<i class="icon-dribbble"></i>
</a>
</li>
<li>
<a class="facebook" href="#">
<i class="icon-facebook"></i>
</a>
</li>
<li>
<a class="pinterest" href="#">
<i class="icon-pinterest"></i>
</a>
</li>
<li>
<a class="forrst" href="#">
<i class="icon-forrst"></i>
</a>
</li>
<li>
<a class="rss" href="#">
<i class="icon-rss"></i>
</a>
</li>
</ul>
<div class="clearfix"></div>
</div>
</div>
<!-- end information -->
</div>
<!-- end contact form + information -->
</div>