-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-recover-password.html
234 lines (230 loc) · 9.7 KB
/
account-recover-password.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html>
<head>
<title>Meith - Recover Password</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#scrollSpyMenu">
<!--========== START COMPONENT BODY LOADING ANIMATION ==========-->
<div class="component-body-loading-animation body-loading-animation-animate"></div>
<!--========== END COMPONENT BODY LOADING ANIMATION ==========-->
<!--========== START COMPONENT HEADER ==========-->
<div class="component-header">
<div class="background-color-primary left"></div>
<div class="background-color-fourth right"></div>
<!--========== START COMPONENT NAVIGATION ==========-->
<div class="component-navigation">
<div class="container">
<nav class="navbar" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#meith-navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand logo-text" href="index.html">
<span>Meith</span>
Wave of Pixels
</a>
</div>
<div class="collapse navbar-collapse" id="meith-navigation">
<ul class="nav navbar-nav navbar-right">
<li ><a href="index.html">Home</a></li>
<li ><a href="portfolio-list.html">Portfolio</a></li>
<li ><a href="blog.html">Blog</a></li>
<li class="dropdown ">
<a href="team-style-grid.html" class="dropdown-toggle" data-toggle="dropdown">The Team</a>
<ul class="dropdown-menu" role="menu">
<li><a href="team-style-grid.html">Grid Style</a></li>
<li><a href="team-style-list.html">List Style</a></li>
<li><a href="team-style-list-department.html">List Style With Departments</a></li>
<li><a href="road-map.html">Road Map</a></li>
</ul>
</li>
<li class="dropdown ">
<a href="shop-style-grid.html" class="dropdown-toggle" data-toggle="dropdown">Shop</a>
<ul class="dropdown-menu" role="menu">
<li><a href="shop-style-grid.html">Style Grid</a></li>
<li><a href="shop-style-list.html">Style List</a></li>
<li><a href="shop-single-product.html">Single Product</a></li>
<li><a href="shop-single-product-left-sidebar.html">Single Product Left Sidebar</a></li>
<li><a href="shop-single-product-right-sidebar.html">Single Product Right Sidebar</a></li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
<li><a href="shop-style-list-left-sidebar.html">List Style Left Sidebar</a></li>
<li><a href="shop-style-list-right-sidebar.html">List Style Right Sidebar</a></li>
</ul>
</li>
<li class="dropdown active">
<a href="account-login.html" class="dropdown-toggle" data-toggle="dropdown">Account</a>
<ul class="dropdown-menu" role="menu">
<li><a href="account-login.html">Login</a></li>
<li><a href="account-registration.html">Register</a></li>
<li><a href="account-recover-password.html">Recover Password</a></li>
<li><a href="shop-bookmark-list.html">Favorite Products</a></li>
</ul>
</li>
<li ><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</div>
<div class="clearfix"></div>
</div>
<!--========== END COMPONENT NAVIGATION ==========-->
<div class="clearfix"></div>
</div>
<!--========== END COMPONENT HEADER ==========-->
<!--========== START COMPONENT ACCOUNT RECOVER PASSWORD ==========-->
<form class="component-account-recover-password component-account-entry-page" method="POST" action="account-recover-password.html">
<div class="container padding-in-box-70">
<div class="title-account-recover">
<p class="left-title">
<span>Meith</span>
website
</p>
<span class="bar-separated"></span>
<p class="right-title">
<span>Members Area</span>
</p>
</div>
<div class="row">
<div class="content col-sm-8 col-md-6">
<div class="form-group">
<input type="email" name="email-for-recover" class="form-control" placeholder="Email">
</div>
<div class="action-section">
<a href="account-login.html" class="change-page">Take me back to login</a>
<button type="submit" class="submit-date btn btn-primary">Submit</button>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="clearfix"></div>
</form>
<!--========== END COMPONENT ACCOUNT RECOVER PASSWORD ==========-->
<!--========== START COMPONENT FOOTER ==========-->
<div class="component-footer">
<div class="background-color-primary right"></div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-9">
<div class="col-xs-12 col-sm-4 first-element">
<div class="widget-text-about">
<h3 class="title-widget-website">
<span>Meith</span>
website
</h3>
<p class="description">
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat,
vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim
qui blandit erdiet doming id quod mazim placerat facer possim assum.
</p>
<a href="#" class="reed-more">LEAR MORE</a>
<div class="clearfix"></div>
</div> </div>
<div class="col-xs-12 col-sm-4">
<div class="widget-tags">
<h3 class="title-widget">
Tags
</h3>
<ul>
<li><a href="#">Uumatis</a></li>
<li><a href="#">Sollemnes</a></li>
<li><a href="#">Commodo</a></li>
<li><a href="#">Mutatione</a></li>
<li><a href="#">Placat</a></li>
<li><a href="#">Humani</a></li>
<li><a href="#">Claritas</a></li>
<li><a href="#">Anteposuerit</a></li>
<li><a href="#">Consuetudium </a></li>
<li><a href="#">Molest</a></li>
</ul>
<div class="clearfix"></div>
</div> </div>
<div class="col-xs-12 col-sm-4">
<div class="widget-recent-post">
<h3 class="title-widget">
Recent Posts
</h3>
<ul class="media-list post">
<li class="media">
<a class="pull-left" href="blog-post.html">
<span class="cube"></span>
<img class="media-object" src="assets/image/widget-posted-recent-image-1.jpg" alt="widget-posted-recent-image-1">
</a>
<div class="media-body">
<p class="title-post">Fusce gravida tortor felis, ac dictum risus sagittis</p>
<p class="post-date">May 9, 2014</p>
</div>
</li>
</ul>
<ul class="media-list post">
<li class="media">
<a class="pull-left" href="blog-post.html">
<span class="cube"></span>
<img class="media-object" src="assets/image/widget-posted-recent-image-2.jpg" alt="widget-posted-recent-image-2">
</a>
<div class="media-body">
<p class="title-post">Fusce gravida tortor felis, ac dictum risus sagittis</p>
<p class="post-date">May 15, 2014</p>
</div>
</li>
</ul>
<ul class="media-list post">
<li class="media">
<a class="pull-left" href="blog-post.html">
<span class="cube"></span>
<img class="media-object" src="assets/image/widget-posted-recent-image-3.jpg" alt="widget-posted-recent-image-3">
</a>
<div class="media-body">
<p class="title-post">Fusce gravida tortor felis, ac dictum risus sagittis</p>
<p class="post-date">May 18, 2014</p>
</div>
</li>
</ul>
<div class="clearfix"></div>
</div> </div>
</div>
<div class="col-sm-12 col-md-3 right-section">
<div class="widget-newsletter">
<h3 class="title-widget">
NewsLetter
</h3>
<p class="description">
Lorem ipsum dolor sit amet, sed diam nonummy nibh euismod tincidunt ut laore.
</p>
<form action="send">
<input type="email" class="form-control" placeholder="Enter your email adress">
<button class="btn btn-primary col-sm-6 col-xs-12" type="button">Subscribe</button>
<div class="clearfix"></div>
</form>
<ul class="social-list-vertical">
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-google-plus"></span></a></li>
<li><a href="#"><span class="fa fa-youtube"></span></a></li>
</ul>
<div class="clearfix"></div>
</div> </div>
<div class="col-sm-12 col-md-6 copyright">
<p>Copyright © 2014 - Designed by EasyDevelopment</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!--========== END COMPONENT FOOTER ==========-->
<script type="text/javascript" src="assets/scripts/jquery-1.10.2.js"></script>
<script src="assets/scripts/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript" src="assets/scripts/retina.js" ></script>
<script type="text/javascript" src="assets/scripts/template-helper-min.js"></script>
</body>
</html>