Add: maestro upgrade, setup pages

This commit is contained in:
2018-08-01 18:15:36 +09:00
parent 39e0aa50b8
commit e2e6761c9b
10 changed files with 297 additions and 19 deletions
+51
View File
@@ -0,0 +1,51 @@
<script>
function changeMaestroInfo() {
location.href="main_menu.html";
}
</script>
<div class="container my-3">
<div class="card border-primary">
<div class="card-header bg-light"><span class="h4">마에스트로 계정 정보 수정</span></div>
<div class="card-body">
<form class="mx-4">
<div class="form-group row">
<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>
</div>
<div class="col-sm-4">
<input type="button" id="id_ckeck" class="btn btn-info" value="중복 체크" onClick="checkMaestroID()" disabled>
</div>
</div>
<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">
<small class="form-text text-muted">4~16 글자. 영문, 숫자만 사용 가능합니다.</small>
</div>
</div>
<div class="form-group row">
<label for="email" class="col-sm-2 col-form-label">* 이메일</label>
<div class="col-sm-6">
<input type="email" class="form-control" id="email" placeholder="name@example.com">
</div>
</div>
<div class="mt-5 mb-1 text-danger">위 내용으로 마에스트로 계정 정보를 변경합니다.</div>
<button type="button" class="btn btn-danger btn-block btn-lg" onClick="changeMaestroInfo()">변경</button>
</form>
</div> <!-- card body -->
</div>
</div> <!-- container -->