password strength meter

This commit is contained in:
2026-04-06 15:48:27 -04:00
parent 8b74cab34e
commit b9ed00c127
5 changed files with 39 additions and 6 deletions

View File

@@ -43,9 +43,6 @@ function EvaluatePassword(password) {
}
}
if (!accepted && isLongEnough) {
errors.push("Password is too simple. Try adding more variety or length.");
}
return {
score: Math.min(score, 100),
errors: errors,