-
Notifications
You must be signed in to change notification settings - Fork 10
/
forgetPassword.html
54 lines (42 loc) · 2.14 KB
/
forgetPassword.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
<!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="/css/all.min.css">
<link rel="stylesheet" href="/css/fonts.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="css/forgetpassword.css">
<title>Forgot Password</title>
</head>
<body class="forgot-password-bg">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="container-fluid">
<div class="display"></div>
</div>
<div class="col-12 col-sm-6 col-md-4">
<form class="form-container">
<div class="form-group px-3">
<div class="form-text mb-4">
<h1 class="text-center mb-2">Forgot Password</h1>
<p class="text-center mt-4">Enter your email and we’d send you a link to reset your password </p>
</div>
<div class="input-group mb-4">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fas fa-envelope"></i></span>
</div>
<input type="password" class="form-control" id="forget-Password" aria-label="forget-Password" aria-describedby="forget-Password">
</div>
<button type="submit" class="btn btn-primary w-100 border-3">Submit</button>
<a class="text-decoration-none" href="#"><p class="text-center mt-5"> <span><i class="fas fa-chevron-left"></i></span> Back to Login</p></a>
</div>
</form>
</div>
</div>
</div>
<script src="./js/all.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/jquery.3.4.1.js"></script>
</body>
</html>