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
// RegExp
email: /^[a-zA-Z0-9._+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$///valid email format
password: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{8,}$///has to contain at least a capital and a lowercase letter a number and a special character [@$!%*#?&] with the minimum length of 8 characters
username: /^[a-zA-Z0-9_]{3,32}/// Between 3 and 32 characters can contain underscores _
name: /^[a-zA-Z]{3,35}/// Between 3 and 32 characters. Its applied to the first and last name