text changes, error styling, navbar menu styling

This commit is contained in:
jackiettran
2025-12-23 23:08:22 -05:00
parent 5ec22c2a5b
commit 2a32470758
5 changed files with 52 additions and 16 deletions

View File

@@ -206,8 +206,7 @@ router.post(
if (!user) {
return res.status(401).json({
error:
"Unable to log in. Please check your email and password, or create an account.",
error: "Please check your email and password, or create an account.",
});
}
@@ -226,8 +225,7 @@ router.post(
// Increment login attempts
await user.incLoginAttempts();
return res.status(401).json({
error:
"Unable to log in. Please check your email and password, or create an account.",
error: "Please check your email and password, or create an account.",
});
}