-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-mail.html
94 lines (87 loc) · 3.04 KB
/
forgot-mail.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
<!-- 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 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='col-sm-offset-4 col-sm-8'>
<button type="button" class='btn btn-primary'>发送验证邮件</button>
</div>
</form>
<!-- 发送验证邮箱后,页面变成 -->
<!-- <div class="text-center">
<div class="verify-sucess">
<i class="fa fa-check-circle"></i>
<span>验证邮件已发送</span>
</div>
<div class="verify-mail-des">
<p>验证邮件已发送至您的邮箱<a href="javascript:void(0);">402****@qq.com</a>,点击邮件中的链接完成操作。</p>
<p>验证邮件24小时内有效,请尽快验证!</p>
</div>
<div class="verify-mail-send">
<a class="btn btn-success">立即进入邮箱</a>
<a href="javascript:void(0)" class="verify-mail-handle">已发送 <span>59</span>秒后重新发送</a>
</div>
</div> -->
</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>