You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i write a code for signup and login . i encrypt password and store in data base and after that in during signin when i compare the password is return false even the password is true and encypt and decrypt correct i try debugging statements also but never find the solution here is the code
const loginController = async (req, res) => {
try {
const { name, password } = req.body;
console.log("Received password:", password);
if (!name || !password) {
console.log("Name or password not provided");
return res.status(400).json({ message: "Please provide name and password" });
}
const user = await UserModel.findOne({ name });
if (!user) {
console.log("User not found with name:", name);
return res.status(404).json({ message: "User not found" });
}
// Check if password is correct
console.log("User hashed password:", user.password);
const isMatch = await bcrypt.compare(password.trim(), user.password);
console.log("Password match result:", isMatch);
if (isMatch) {
console.log("Login successful for user:", user.name);
return res.status(200).json({ // Corrected status code from 201 to 200 for successful login
message: "Login successful",
user: {
_id: user._id,
name: user.name,
token: generateToken(user),
},
});
} else {
console.log("Invalid password for user:", user.name);
return res.status(401).json({ message: "Invalid password" });
}
the console log statement are following "
Hashed password while signup: $2a$10$BQzL/xkcX9q73ewDLv5bqeo9w0H5fBi/4oeT6imaYmFjZymbEGoI6
$2a$10$xSrww0yg/L9oiQTNorGVLew54TikR3N507loj9S8RzY0lwlrd3Xfu
password stored in database: abc
Received password: abc
User hashed password: $2a$10$xSrww0yg/L9oiQTNorGVLew54TikR3N507loj9S8RzY0lwlrd3Xfu
Password match result: false
Invalid password for user: abc"
please tell if any problem there
The text was updated successfully, but these errors were encountered:
i write a code for signup and login . i encrypt password and store in data base and after that in during signin when i compare the password is return false even the password is true and encypt and decrypt correct i try debugging statements also but never find the solution here is the code
const loginController = async (req, res) => {
try {
const { name, password } = req.body;
console.log("Received password:", password);
if (!name || !password) {
console.log("Name or password not provided");
return res.status(400).json({ message: "Please provide name and password" });
}
} catch (error) {
console.error("Signin error:", error);
return res.status(500).json({ message: "Server error" });
}
};
const signupController = async (req, res) => {
try {
const { name, email, password } = req.body;
} catch (error) {
if (error.name === "ValidationError") {
return res
.status(422)
.json({ message: "Validation error", details: error.message });
}
console.error("Signup error:", error);
res.status(500).json({ message: "Server error" });
}
};
the console log statement are following "
Hashed password while signup: $2a$10$BQzL/xkcX9q73ewDLv5bqeo9w0H5fBi/4oeT6imaYmFjZymbEGoI6
$2a$10$xSrww0yg/L9oiQTNorGVLew54TikR3N507loj9S8RzY0lwlrd3Xfu
password stored in database: abc
Received password: abc
User hashed password: $2a$10$xSrww0yg/L9oiQTNorGVLew54TikR3N507loj9S8RzY0lwlrd3Xfu
Password match result: false
Invalid password for user: abc"
please tell if any problem there
The text was updated successfully, but these errors were encountered: