-
Notifications
You must be signed in to change notification settings - Fork 82
/
forgot-password.html
45 lines (42 loc) · 1.86 KB
/
forgot-password.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
<!doctype html>
<!--
* Bootstrap Simple Admin Template
* Version: 2.1
* Author: Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Forgot Password | Bootstrap Simple Admin Template</title>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/auth.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="auth-content">
<div class="card">
<div class="card-body text-center">
<div class="mb-4">
<img class="brand" src="assets/img/bootstraper-logo.png" alt="bootstraper logo">
</div>
<h6 class="mb-4 text-muted">Reset Password</h6>
<p class="text-muted text-start">Enter your email address and your new password will be emailed to you.</p>
<form action="" method="">
<div class="mb-3 text-start">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" placeholder="Enter your email" required>
</div>
<button class="btn btn-primary mb-4" style="width:100%">Send me new password</button>
</form>
<p class="mb-0 text-muted">Don’t have an account? <a href="signup.html">Sign up</a></p>
</div>
</div>
</div>
</div>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>