-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin_reset_password.php
111 lines (97 loc) · 4.1 KB
/
admin_reset_password.php
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
100
101
102
103
104
105
106
107
108
109
110
111
<?php
session_name("staff");
// Initialize the session
session_name('admin');
session_start();
// Check if the user is logged in, otherwise redirect to login page
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: admin_login.php");
exit;
}
// Include config file
require_once "config.php";
// Define variables and initialize with empty values
$new_password = $confirm_password = "";
$new_password_err = $confirm_password_err = "";
// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){
// Validate new password
if(empty(trim($_POST["new_password"]))){
$new_password_err = "Please enter the new password.";
} elseif(strlen(trim($_POST["new_password"])) < 6){
$new_password_err = "Password must have atleast 6 characters.";
} else{
$new_password = trim($_POST["new_password"]);
}
// Validate confirm password
if(empty(trim($_POST["confirm_password"]))){
$confirm_password_err = "Please confirm the password.";
} else{
$confirm_password = trim($_POST["confirm_password"]);
if(empty($new_password_err) && ($new_password != $confirm_password)){
$confirm_password_err = "Password did not match.";
}
}
$cname=$_SESSION['uname'];
// Check input errors before updating the database
if(empty($new_password_err) && empty($confirm_password_err)){
// Prepare an update statement
$sql = "UPDATE counsellor SET password = '$new_password' WHERE cname = '$cname'";
if($stmt = mysqli_prepare($conn, $sql)){
// Bind variables to the prepared statement as parameters
// mysqli_stmt_bind_param($stmt, "si", $param_password, $param_id);
// Set parameters
// $param_password = password_hash($new_password, PASSWORD_DEFAULT);
// $param_id = $_SESSION["id"];
// Attempt to execute the prepared statement
if(mysqli_stmt_execute($stmt)){
// Password updated successfully. Destroy the session, and redirect to login page
session_destroy();
header("location: admin_login.php");
exit();
} else{
echo "Oops! Something went wrong. Please try again later.";
}
// Close statement
mysqli_stmt_close($stmt);
}
}
// Close connection
mysqli_close($conn);
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reset Password</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="wrapper">
<h2 align="center">Reset Password</h2>
<h1 align="center">Please fill out this form to reset your password.</h1>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
<table align="center">
<tr>
<td align="right">
<label for="pass">New Password</label>
</td><td>
<input type="password" id="pass" name="new_password" required class="form-control<?php echo (!empty($new_password_err)) ? 'is-invalid' : ''; ?>" value="<?php echo $new_password; ?>">
<span class="invalid-feedback"><?php echo "<br>",$new_password_err; ?></span>
<td>
</tr>
<tr><td align="right">
<label for="cpass">Confirm Password</label></td><td>
<input type="password" id="cpass" name="confirm_password" required class="form-control <?php echo (!empty($confirm_password_err)) ? 'is-invalid' : ''; ?>">
<span class="invalid-feedback"><?php echo "<br>", $confirm_password_err; ?></span>
</td></tr>
<tr><td>
</td><td>
<br><br>
<input type="submit" class="button" value="Reset">
</td></tr>
</form>
</div>
</body>
</html>