I need password that includes special characters that are with OWASP standard https://www.owasp.org/index.php/Password_special_characters
pattern="^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$"
Currently my password conditions are:
- Length of at least 8 characters long
- Contain at least 1 lowercase letter [az]
- Contain at least 1 capital letter [AZ],
- Contain at least 1 number [0-9]
- Contain at least 1 special character (currently only #?! @ $% ^ & * -)
When I try to add more special characters (all 33 according to OWASP) I always get some problems (bad verification or not working)