-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathresetPassword.html
75 lines (65 loc) · 3.27 KB
/
resetPassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Change Password</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="animate.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
</head>
<body background="images/background.jpg">
<div class="limiter">
<div class="container-login100">
<div class="wrap4" >
<form class="change password validate-form" method="post" action="http://localhost/quiz/php/changepassword.php">
<span class="login100-form-title">
Change Existing Password
</span>
<div class="form-element">
<label for="student_name">New Password</label>
<input class="input2" type="password" name="newpwd" placeholder="Enter New Password" required>
</div>
<div class="form-element">
<label for="student_name">Confirm Password</label>
<input class="input2" type="password" name="repwd" placeholder="ReEnter New Password" required>
</div>
<div class="backbutton1" >
<button class="next1">
Confirm
</button>
</div>
</div>
</div>
</div>
</div>
<!--===============================================================================================-
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-
<script src="vendor/tilt/tilt.jquery.min.js"></script>
<script >
$('.js-tilt').tilt({
scale: 1.1
})
</script> -->
</body>
</html>