You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should allow the user to type in whatever he/she wants. Why? Because they might be using password generators and this regex:
/^[a-zA-Z0-9+_-]{6,18}$/
... is limiting them to use only a small subset of characters and that is not a good practice. I think it should also allow to type in longer text, instead of 18, I would use for example 32.
The text was updated successfully, but these errors were encountered:
It should allow the user to type in whatever he/she wants. Why? Because they might be using password generators and this regex:
... is limiting them to use only a small subset of characters and that is not a good practice. I think it should also allow to type in longer text, instead of
18
, I would use for example32
.The text was updated successfully, but these errors were encountered: