-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_pass.php
More file actions
110 lines (107 loc) · 2.59 KB
/
update_pass.php
File metadata and controls
110 lines (107 loc) · 2.59 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
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
<?php
session_start();
require_once('Connect.php');
if (isset($_POST['password'])) {
$password = password_hash($_POST['password'], PASSWORD_BCRYPT);
$email = $_SESSION['email'];
$stmt = $conn->prepare("UPDATE users SET password=? WHERE mobile_email=?");
$stmt->bind_param("ss", $password, $email);
if ($stmt->execute()) {
echo "Password updated successfully!";
session_destroy();
} else {
echo "Error updating password!";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Update Password - BMS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #062b53; /* light grey background */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
width: 350px;
}
h2 {
margin-bottom: 8px;
font-size: 24px;
color: #062b53;
}
p {
margin-bottom: 20px;
color: #666;
font-size: 14px;
}
input {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
}
button {
width: 100%;
padding: 12px;
margin-top: 15px;
border: none;
border-radius: 6px;
background: #007bff;
color: white;
font-size: 16px;
cursor: pointer;
transition: 0.3s ease;
}
button:hover {
background: #07284bff;
transform: translateY(-2px);
}
.back-link {
margin-top: 15px;
text-align: center;
font-size: 14px;
}
.back-link a {
color: #007bff;
text-decoration: none;
}
.back-link a:hover {
color: #062b53;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h2>Update Password</h2>
<p>Enter your new password below</p>
<form action="" method="POST">
<input type="password" name="password" placeholder="New Password" required>
<input type="password" name="confirm_password" placeholder="Confirm Password" required>
<button type="submit">Update</button>
</form>
<div class="back-link">
<a href="login.php">Back to Login</a>
</div>
</div>
</body>
</html>