forked from ANSHIKA-26/WordWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpass.html
176 lines (169 loc) · 4.58 KB
/
resetpass.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!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>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: rgba(238, 216, 187, 0.849);
}
.container {
width: 100%;
max-width: 400px;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
h2 {
margin-bottom: 20px;
color: #333;
}
.password-field {
position: relative;
margin: 8px 0;
}
input[type="password"] {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}
input[type="email"] {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}
input[type="text"] {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box;
}
.eye-icon {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
button {
width: 100%;
padding: 12px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
.error {
color: red;
font-size: 14px;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<h2>Reset Your Password</h2>
<form id="resetForm">
<div class="password-field">
<input
type="email"
id="email"
placeholder="Enter your email"
required
/>
</div>
<div class="password-field">
<input
type="password"
id="password"
placeholder="Enter new password"
required
/>
<span class="eye-icon" onclick="togglePassword('password')">👁️</span>
</div>
<div class="password-field">
<input
type="password"
id="confirmPassword"
placeholder="Confirm new password"
required
/>
<span class="eye-icon" onclick="togglePassword('confirmPassword')"
>👁️</span
>
</div>
<button type="button" onclick="submitResetPassword()">
Reset Password
</button>
<p id="errorMessage" class="error"></p>
</form>
</div>
<script>
function togglePassword(fieldId) {
const field = document.getElementById(fieldId);
field.type = field.type === "password" ? "text" : "password";
}
async function submitResetPassword() {
const email = document.getElementById("email").value;
const password = document.getElementById("password").value;
const confirmPassword =
document.getElementById("confirmPassword").value;
const errorMessage = document.getElementById("errorMessage");
// Basic validation
if (password !== confirmPassword) {
errorMessage.textContent = "Passwords do not match.";
return;
}
if (password.length < 6) {
errorMessage.textContent =
"Password must be at least 8 characters long.";
return;
}
try {
const response = await fetch(
"http://localhost:5000/api/users/resetpassword",
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
email,
password,
}),
}
);
const data = await response.json();
if (response.ok && data.success) {
alert("Password reset successfully!");
} else {
errorMessage.textContent = "Failed to reset password. Try again.";
}
} catch (error) {
errorMessage.textContent =
"An error occurred. Please try again later.";
console.error("Error:", error);
}
}
</script>
</body>
</html>