-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot-phone.html
123 lines (112 loc) · 4 KB
/
forgot-phone.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
<!-- head.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta http-equiv="X-ua-Compatible" content="chrome=1"/>
<title>Document</title>
<meta name="description" content="">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link rel="stylesheet" type="text/css" href="./Public/css/animate.css">
<link rel="stylesheet" type="text/css" href="./Public/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./Public/css/main.css">
<script type="text/javascript" src='./Public/js/vendor/respond.min.js'></script>
<script type="text/javascript" src="./Public/js/vendor/require-2.2.0.min.js"></script>
<script type="text/javascript" src='./Public/js/require-config.js'></script>
<!--[if lt IE9]>
<script src="http://cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
<![endif]-->
</head>
<!-- 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 active'>
<a href="" title="" class='step-1'>输入绑定手机号</a>
</li>
<li class='step-item'>
<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="" class='form-control'>
</div>
</div>
<div class="form-group">
<label for="" class='col-sm-4 control-label'>验证码:</label>
<div class='col-sm-6'>
<div class="input-group">
<input type="email" name="" value="" placeholder="" class='form-control'>
<span class='input-group-addon' style='padding:2px;'>
<img src="http://passport.iqiyi.com/register/vcode.php?r=0.7223005960695446" alt="" height="28px">
</span>
</div>
</div>
</div>
<div class="form-group">
<label for="" class='col-sm-4 control-label'>短信验证码:</label>
<div class='col-sm-6'>
<div class="input-group">
<input type="email" name="" value="" placeholder="" class='form-control'>
<div class="input-group-btn" >
<button type="button" class='btn btn-secondary' style='width:110px;'>重新发送</button>
</div>
</div>
</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>