Untitled

Anonymous
plain_text
05/22/2023 1:19 PM
248 B
19
Indexable
  // Check if the password contains at least one number
  if (!/[0-9]/.test(password)) {
    alert("Your password must contain at least one number");
    return false;
  }

//iji
Editor is loading...