fix login userid regex

dev
adb 3 years ago
parent 22c6170787
commit 30a7e4da81

@ -42,7 +42,7 @@ export default {
} if (this.password === '') { } if (this.password === '') {
this.loginError = 'password is empty'; this.loginError = 'password is empty';
return; return;
} if (!(this.user.match(/^@[a-zA-Z0-9]+:[a-z0-9]+\.[a-z]/))) { } if (!(this.user.match(/^@[a-zA-Z0-9_.+-]+:[a-z0-9.-]+\.[a-z]+$/))) {
this.loginError = 'username is in wrong style'; this.loginError = 'username is in wrong style';
return; return;
} }

Loading…
Cancel
Save