-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasswordReset.html
37 lines (35 loc) · 1.89 KB
/
passwordReset.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reset Password</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous"/>
</head>
<body class="bg-light">
<script src="js/script.js"></script>
<div class="container mt-5">
<div class="row">
<div class="col">
<div class="col-md-6 offset-md-3 border rounded bg-white text-center text-muted" style="height:wrap-content">
<h1 class="mt-5">Reset Password</h1>
<form method="POST" action="javascript:void(0);" class="text-left" onsubmit="passwordReset()" id="login-form">
<div class="form-group text-left mt-4">
<label for="email"><strong> Email :</strong></label>
<input type="email" class="form-control" name="email" id="email" placeholder="Enter your email" required>
</div>
<div class="col mt-4 mb-4 p-0">
<button type="submit" id="button" class="btn btn-primary mr-2">Send verification link to mail</button>
<p class='text-weight-bold text-success' id="countdown" style="display: inline-block;"></p>
<a href="/index.html" class="card-link text-info ml-3"><span class="text-info">Know your password? </span>Login</a>
</div>
<div class="alert alert-secondary" id="alert-msg" role="alert" hidden>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>