diff --git a/app/static/js/password.js b/app/static/js/password.js index 7542ec7..4f9cd62 100644 --- a/app/static/js/password.js +++ b/app/static/js/password.js @@ -11,7 +11,7 @@ function containsDigitsLettersSpecialCharacters(s) { resultL = /[a-z]/i.test(s); // Special charater test - '+-*/,.:;/\[]<>$%&()!?^~'.split('').forEach((x) => { + '+-*/,.:;/\[]<>$%&()!?^~@'.split('').forEach((x) => { if (s.includes(x)) resultS = 1; });