trying stuff out

This commit is contained in:
Smigz 2025-03-31 16:34:30 -04:00
parent 245597c494
commit 4be0ea5870
9 changed files with 50 additions and 37 deletions

View file

@ -1,7 +1,7 @@
function usernameValidation(username) {
const errors = [];
if (username.length < 5) {
errors.push("*username must be at least 8 characters");
errors.push("*username must be at least 5 characters");
}
if (username.includes(" ")) {