[Web] Fix mail validation for quota sender address

This commit is contained in:
andryyy
2020-02-21 09:21:03 +01:00
parent ebf292531d
commit 6efe8b7bde
2 changed files with 5 additions and 6 deletions

View File

@@ -1,4 +1,8 @@
$(document).ready(function() {
function validateEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}
function is_active(elem) {
if ($(elem).data('submitted') == '1') {
return true;
@@ -100,8 +104,7 @@ $(document).ready(function() {
}
}
if ($(this).attr("type") == 'email') {
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if (!emailReg.test($(this).val())) {
if (!validateEmail($(this).val())) {
invalid = true;
$(this).addClass('inputMissingAttr');
} else {