diff --git a/src/web/js/lib/account_validator.js b/src/web/js/lib/account_validator.js index 0c71d20..00cf76b 100644 --- a/src/web/js/lib/account_validator.js +++ b/src/web/js/lib/account_validator.js @@ -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; \ No newline at end of file +AccountValidator.PLAYER_PW_LENGTH_MAXIMUM = 8; \ No newline at end of file diff --git a/src/web/module/maestro_section_add_player.html b/src/web/module/maestro_section_add_player.html index 53f7a96..f510dcb 100644 --- a/src/web/module/maestro_section_add_player.html +++ b/src/web/module/maestro_section_add_player.html @@ -99,7 +99,7 @@ function onErrorPlayerPW(message) {