-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-phone-2.html
84 lines (78 loc) · 2.41 KB
/
forgot-phone-2.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
<!-- head.html -->
<% include ./publicTpl/head.html %>
<!-- head.html end-->
<body>
<div class="com-stick-root">
<!-- /header -->
<header class="header reg-header">
<div class="header-top container clearfix">
<h1 class='logo-container logo-container--reg pull-left'>
<a href='#' class="brand-logo">
<img src="./Public/img/logo.png" width="150" alt="">
</a>
</h1>
<nav class="navbar pull-right">
<div class='navbar-text text-right'>
<p>Already have a Regbuzz account? <a href="" title="" class='btn btn-primary btn-sm'>Log In</a></p>
</div>
</nav>
</div>
</header>
<!-- /header -->
<!-- 密码 -->
<div class="container container-forgot">
<ol class="breadcrumb">
<li><a href="#">账户管理</a></li>
<li><a href="#">找回密码</a></li>
<li class="active">手机找回</li>
</ol>
<div class="section">
<ul class="steps">
<li class='step-item'>
<a href="" title="" class='step-1'>输入绑定手机号</a>
</li>
<li class='step-item active'>
<a href="" title="" class='step-2'>设置新密码</a>
</li>
<li class='step-item'>
<a href="" title="" class='step-3'>设置成功</a>
</li>
</ul>
<!-- form -->
<section style='max-width: 600px;margin: 10px auto 100px;'>
<!-- 步骤1 -->
<form class='form-horizontal'>
<div class="form-group">
<label for="" class='col-sm-4 control-label'>新密码:</label>
<div class='col-sm-6'>
<input type="email" name="" value="" placeholder="8~20位字母、数字或字符至少两种" class='form-control'>
</div>
</div>
<div class="form-group">
<label for="" class='col-sm-4 control-label'>确认密码:</label>
<div class='col-sm-6'>
<input type="email" name="" value="" placeholder="请再次输入密码" class='form-control'>
</div>
</div>
<div class='col-sm-offset-4 col-sm-8'>
<button type="button" class='btn btn-primary'>确定</button>
</div>
</form>
</section>
</div>
</div>
<!-- 密码主体 end-->
<div class="com-stick-root-footer">
</div>
</div>
<footer class='com-stick-footer reg-footer'>
<div class="text-center">
<p class='reg-copyright'>© Copyright 2015 - 2016<a href="" title=""> Regbuzz.com</a></p>
<p class='com-policy'>
<a href="" title="">Cookie Policy</a>
<a href="" title="">Terms & Conditions</a>
</p>
</div>
</footer>
</body>
</html>