Skip to content

Commit

Permalink
Merge pull request #330 from kapkic/signin-password-char-fix
Browse files Browse the repository at this point in the history
Fixed password character on Signup.
  • Loading branch information
josvandervelde authored May 19, 2024
2 parents bdb2f78 + 92c028d commit ccaac98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/client/app/src/pages/auth/SignUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function SignUp() {
event.preventDefault();
console.log(event.target.email.value);
console.log(event.target.password.value);
if (event.target.password.value.length < 6) {
if (event.target.password.value.length < 8) {
setError(true);
setErrorMessage("Password too weak");
} else if (
Expand Down

0 comments on commit ccaac98

Please sign in to comment.