Fix: allow korean maestro id

This commit is contained in:
2018-09-03 09:36:06 +09:00
parent 8cf7f67ac6
commit e9da9b9bba
4 changed files with 11 additions and 6 deletions
+3 -2
View File
@@ -89,6 +89,7 @@ function checkData() {
}
password = $("#password").val();
console.log("password : " + password);
if(password.length === 0) {
showErrorMessage("암호를 입력해 주세요.", "error");
$("#password").focus();
@@ -239,7 +240,7 @@ $('#myTab a').on('click', function (e) {
<label for="maestro_name" class="col-sm-2 col-form-label">* 아이디</label>
<div class="col-sm-6">
<input type="text" class="form-control" id="maestro_name" placeholder="아이디 입력">
<small class="form-text text-muted">4~20 글자. 영문, 숫자만 사용 가능합니다.</small>
<small class="form-text text-muted">4~20 글자. 한글도 사용 가능합니다.</small>
</div>
<div class="col-sm-4">
<input type="button" id="id_ckeck" class="btn btn-outline-dark" value="중복 체크" onClick="checkMaestroID()">
@@ -250,7 +251,7 @@ $('#myTab a').on('click', function (e) {
<div class="form-group row">
<label for="password" class="col-sm-2 col-form-label">* 암호</label>
<div class="col-sm-6">
<input type="password" class="form-control" id="password" placeholder="Password">
<input type="text" class="form-control" id="password" placeholder="Password">
<small class="form-text text-muted">4~16 글자. 영문, 숫자만 사용 가능합니다.</small>
</div>
</div>