-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpages-reset-password.html
99 lines (83 loc) · 2.87 KB
/
pages-reset-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
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
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Responsive Admin & Dashboard Template based on Bootstrap 5">
<meta name="author" content="Jassa">
<meta name="keywords" content="Jassa, bootstrap, bootstrap 5, admin, dashboard, template, responsive, css, sass, html, theme, front-end, ui kit, web">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="shortcut icon" href="img/icons/icon-48x48.png">
<link rel="canonical" href="pages-reset-password.html">
<title>Reset Password | Jassa</title>
<link href="css2.css?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<!-- Choose your prefered color scheme -->
<!-- <link href="css/light.css" rel="stylesheet"> -->
<!-- <link href="css/dark.css" rel="stylesheet"> -->
<!-- BEGIN SETTINGS -->
<!-- Remove this after purchasing -->
<link class="js-stylesheet" href="css/light.css" rel="stylesheet">
<script src="js/settings.js"></script>
<style>
body {
opacity: 0;
}
</style>
<!-- END SETTINGS -->
</head>
<body data-theme="default" data-layout="fluid" data-sidebar-position="left" data-sidebar-layout="default">
<main class="d-flex w-100 h-100">
<div class="container d-flex flex-column">
<div class="row vh-100">
<div class="col-sm-10 col-md-8 col-lg-6 mx-auto d-table h-100">
<div class="d-table-cell align-middle">
<div class="text-center mt-4">
<h1 class="h2">Reset password</h1>
<p class="lead">
Enter your email to reset your password.
</p>
</div>
<div class="card">
<div class="card-body">
<div class="m-sm-4">
<form>
<div class="mb-3">
<label class="form-label">Email</label>
<input class="form-control form-control-lg" type="email" name="email" placeholder="Enter your email">
</div>
<div class="text-center mt-3">
<a href="index.html" class="btn btn-lg btn-primary">Reset password</a>
<!-- <button type="submit" class="btn btn-lg btn-primary">Reset password</button> -->
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="js/app.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
setTimeout(function(){
if(localStorage.getItem('popState') !== 'shown'){
window.notyf.open({
type: "success",
message: "jassa",
duration: 10000,
ripple: true,
dismissible: false,
position: {
x: "left",
y: "bottom"
}
});
localStorage.setItem('popState','shown');
}
}, 15000);
});
</script></body>
</html>