-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforget_pass.php
More file actions
41 lines (35 loc) · 1.44 KB
/
Copy pathforget_pass.php
File metadata and controls
41 lines (35 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="ex_css/forget.css" rel="stylesheet">
<style>
.form-gap {
padding-top: 70px;
}
</style>
<title>Forget Password</title>
</head>
<body>
<div class="container">
<h3><i class="fa fa-lock fa-4x"></i></h3>
<p class="forget-title">Forgot Password?</p>
<p class="forget-details">You can reset your password here.</p>
<div class="panel-body">
<form id="register-form" role="form" autocomplete="off" class="form" method="post">
<div class="form-group">
<div class="input-group">
<input id="email" name="email" placeholder="email address" class="form-control" type="email">
</div>
</div>
<div class="btn">
<a href="sign_in.php" name="recover-submit" >Reset Password</a>
</div>
<input type="hidden" class="hide" name="token" id="token" value="">
</form>
</div>
</div>
</body>
</html>