-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword-reset.html
More file actions
91 lines (71 loc) · 2.54 KB
/
password-reset.html
File metadata and controls
91 lines (71 loc) · 2.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/favicon/favicon.ico" type="image/x-icon" />
<!-- Map CSS -->
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" />
<!-- Libs CSS -->
<link rel="stylesheet" href="./assets/css/libs.bundle.css" />
<!--
Theme Sans Serif CSS
Remove the "disabled" attribute if you want to enable Sans Serif for headings.
-->
<link rel="stylesheet" href="./assets/css/theme-sans-serif.bundle.css" id="themeSansSerif" disabled />
<!--
Demo JS
Remove the code below on a production website.
-->
<script src="./assets/js/demo.bundle.js"></script>
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/theme.bundle.css" />
<!-- Title -->
<title>Goodkit</title>
</head>
<body>
<!-- BODY -->
<main class="border-multicolor">
<div class="container-lg d-flex flex-column">
<div class="row align-items-center justify-content-center min-vh-100 py-12 mt-n1">
<div class="col-12 col-md-7 col-lg-5 text-center">
<!-- Heading -->
<h1 class="display-3 mb-4">
Password reset
</h1>
<!-- Text -->
<p class="text-muted">
Enter your email to reset your password.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="authEmail">
Your email
</label>
<input class="form-control" id="authEmail" type="email" placeholder="Your email">
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Reset password
</button>
</form>
<!-- Text -->
<small class="text-muted">
Remember your password? <a href="sign-in.html">Log in</a>.
</small>
</div>
</div>
</div>
</main>
<!-- JAVASCRIPT -->
<!-- Map JS -->
<script src='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.js'></script>
<!-- Vendor JS -->
<script src="./assets/js/vendor.bundle.js"></script>
<!-- Theme JS -->
<script src="./assets/js/theme.bundle.js"></script>
</body>
</html>