-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget.html
More file actions
executable file
·51 lines (45 loc) · 2.4 KB
/
forget.html
File metadata and controls
executable file
·51 lines (45 loc) · 2.4 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="panel panel-default">
<div class="panel-body">
<div class="text-center" style="padding:50px 0">
<div class="logo">forgot password</div>
<div class="login-form-1">
<form id="forgot-password-form" class="text-left">
<div class="etc-login-form">
<p>When you fill in your registered email address, you will be sent instructions on how
to reset your password.</p>
</div>
<div class="login-form-main-message"></div>
<div class="main-login-form">
<div class="login-group">
<div class="form-group">
<label for="fp_email" class="sr-only">Email address</label>
<input type="text" class="form-control" id="fp_email" name="fp_email" placeholder="email address">
</div>
</div>
<button type="button" class="btn btn-primary">Submit</button>
</div>
<div class="etc-login-form">
<p>already have an account? <a href="signin.html">login here</a></p>
<p>new user? <a href="register.html">create new account</a></p>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>