Fix: player entercode 2~8 digits
This commit is contained in:
@@ -3,7 +3,7 @@ function AccountValidator() {
|
||||
this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/;
|
||||
|
||||
this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/;
|
||||
this.patternPlayerPW = /^[0-9]{2,6}$/;
|
||||
this.patternPlayerPW = /^[0-9]{2,8}$/;
|
||||
}
|
||||
|
||||
// maestro
|
||||
@@ -92,4 +92,4 @@ AccountValidator.PLAYER_ID_LENGTH_MINIMUM = 1;
|
||||
AccountValidator.PLAYER_ID_LENGTH_MAXIMUM = 8;
|
||||
|
||||
AccountValidator.PLAYER_PW_LENGTH_MINIMUM = 2;
|
||||
AccountValidator.PLAYER_PW_LENGTH_MAXIMUM = 6;
|
||||
AccountValidator.PLAYER_PW_LENGTH_MAXIMUM = 8;
|
||||
Reference in New Issue
Block a user