-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresetPassword.html
More file actions
34 lines (31 loc) · 1.48 KB
/
resetPassword.html
File metadata and controls
34 lines (31 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hypernex - Reset Password</title>
<link rel="icon" type="image/x-icon" href="media/hypernex_logo.ico">
<link rel="stylesheet" href="styles.css" type="text/css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css" integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">
</head>
<body class="dark-theme">
<div class="index-card dark-theme-secondary" id="reset-password-card">
<div class="index-card-container">
<h4><b class="dark-text" style="font-size: 32px">Reset your Password</b></h4>
<form class="pure-form">
<label><input type="password" style="width: 75%; text-align: center;" class=".uk-input" placeholder="Password" id="password"></label>
<p></p>
<label><input type="password" style="width: 75%; text-align: center;" class=".uk-input" placeholder="Confirm Password" id="confirmpassword"></label>
</form>
<p></p>
<button class="pure-button pure-button-primary" style="margin: 0 auto;" id="password-reset">Reset Password</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
window.sendSweetAlert = function(params){
return new Promise(exec => Swal.fire(params).then(r => exec(r)))
}
</script>
<script type="module" src="scripts/web/resetPassword.js"></script>
</body>
</html>