added friends endpoints and added features for viewing
This commit is contained in:
@@ -150,8 +150,8 @@ export function getRegistrationFieldErrors(form) {
|
||||
}
|
||||
|
||||
function validateLoginPassword(password) {
|
||||
if (password.length < 1 || password.length > 128) {
|
||||
return "Password must be between 1 and 128 characters.";
|
||||
if (password.length < 12 || password.length > 128) {
|
||||
return "Password must be at least 12 characters.";
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user