@@ -104,6 +104,6 @@ export function checkPass(str) {
if (str == null || str.length < 6) {
return false
}
- const regx = new RegExp("^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[~@#$%^&+=])(?=\\S+$).{8,}$")
+const regx = new RegExp("^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[~@#$%^&+=*/|!])(?=\\S+$).{8,}$")
return regx.test(str)