0
0
Fork 0

Fix bug 528

Bug528-TangJiao
唐娇 2024-03-19 14:59:36 +08:00
parent 7d5b1c0ed4
commit 292972c0ce
3 changed files with 15 additions and 0 deletions

View File

@ -15,6 +15,11 @@
alert('输入不能为空!');
return false;
}
let reg = /^\S*$/; // 正则表达式,用于匹配不包含空格的字符串
if (!reg.test(password)) {
alert('输入不能包含空格!');
return false;
}
$.post(
"/login", {'username': username, 'password': password},
function (response) {

View File

@ -12,6 +12,11 @@
alert('输入不能为空!');
return false;
}
let reg = /^\S*$/; // 正则表达式,用于匹配不包含空格的字符串
if (!reg.test(old_password) || !reg.test(new_password)) {
alert('输入不能包含空格!');
return false;
}
if (new_password !== re_new_password) {
alert('新密码不匹配,请重新输入');
return false;

View File

@ -16,6 +16,11 @@ You're logged in already! <a href="/logout">Logout</a>.
alert('输入不能为空!');
return false;
}
let reg = /^\S*$/; // 正则表达式,用于匹配不包含空格的字符串
if (!reg.test(password) || !reg.test(password2)) {
alert('输入不能包含空格!');
return false;
}
if (password !== password2) {
alert('确认密码与输入密码不一致!');
return false;