-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresetPassword.php
More file actions
63 lines (41 loc) · 1.72 KB
/
resetPassword.php
File metadata and controls
63 lines (41 loc) · 1.72 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
<!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="bootstrap.js" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="bootstrap.css" />
<link rel="icon" href="resource/img/icon1.svg"/>
</head>
<body>
<!-- signinbox -->
<div class="container-fluid vh-100 d-flex justify-content-center mt-5">
<div class="signin_box2 col-12 col-lg-4 p-1 " id="signInBox">
<div class="row g-5">
<h2 class="text-center">Reset Password</h2>
<div class="d-none">
<input type="hidden" id="vcode" value="<?php echo ($_GET["vcode"]) ?>" />
</div>
<div class="col-12">
<label class="form-label">New Password</label>
<input type="password" class="form-control" placeholder="**********" id="newpass1" />
</div>
<div class="col-12">
<label class="form-label">Re-Enter Password</label>
<input type="password" class="form-control" placeholder="**********" id="newpass2" />
</div>
<div class="col-12 col-lg-12 d-grid">
<button class="btn btn-primary" onclick="resetPassword();">Update</button>
</div>
<div class="mt-2 d-none" id="msgDiv1">
<div class="alert alert-dark" role="alert" id="msg1"></div>
</div>
</div>
</div>
</div>
<!-- signinbox -->
<script src="script.js"></script>
</body>
</html>