2022-08-18 06:21:44 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org"
|
|
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
|
|
|
layout:decorate="~{layout/layout}">
|
|
|
|
|
<th:block layout:fragment="script">
|
|
|
|
|
<script type="text/javascript" th:src="@{/js/user/info.js}"></script>
|
|
|
|
|
</th:block>
|
|
|
|
|
<div layout:fragment="content">
|
|
|
|
|
<main class="pt-3">
|
2022-10-12 09:22:20 +00:00
|
|
|
<h4>마이페이지</h4>
|
|
|
|
|
<input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/>
|
|
|
|
|
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
|
2022-08-18 06:21:44 +00:00
|
|
|
<div class="row mx-0">
|
2022-10-12 09:22:20 +00:00
|
|
|
<div class="col-12 card text-center">
|
2022-08-18 06:21:44 +00:00
|
|
|
<div class="card-body">
|
2022-10-12 09:22:20 +00:00
|
|
|
<ul class="nav nav-tabs" id="userTab" role="tablist">
|
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
|
<button class="nav-link active" id="infoTab" data-bs-toggle="tab" data-bs-target="#infoTabPanel" type="button" role="tab" aria-controls="infoTabPanel" aria-selected="true">개인정보</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
|
<button class="nav-link" id="dashboardTab" data-bs-toggle="tab" data-bs-target="#dashboardTabPanel" type="button" role="tab" aria-controls="dashboardTabPanel" aria-selected="false">대시보드</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="tab-content border border-top-0 p-2">
|
|
|
|
|
<div class="tab-pane fade p-2 show active" id="infoTabPanel" role="tabpanel" aria-labelledby="infoTabPanel" tabindex="0">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane fade p-2" id="dashboardTabPanel" role="tabpanel" aria-labelledby="dashboardTab" tabindex="0">
|
2022-08-18 06:21:44 +00:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<div class="modal fade" id="passwordModifyModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="passwordModifyModalLabel" aria-hidden="true">
|
|
|
|
|
<div class="modal-dialog">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<h5 class="modal-title" id="passwordModifyModalLabel">비밀번호 변경</h5>
|
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body mx-4">
|
2022-10-12 09:22:20 +00:00
|
|
|
<form action="#" method="post" id="modifyPasswordForm">
|
2022-08-18 06:21:44 +00:00
|
|
|
<div class="mb-3 row">
|
|
|
|
|
<label for="password" class="col-sm-4 col-form-label text-end">현재 비밀번호</label>
|
|
|
|
|
<div class="col-sm-7">
|
|
|
|
|
<input type="password" class="form-control" id="password" name="password">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 row">
|
|
|
|
|
<label for="modifyPassword" class="col-sm-4 col-form-label text-end">새 비밀번호</label>
|
|
|
|
|
<div class="col-sm-7">
|
|
|
|
|
<input type="password" class="form-control" id="modifyPassword" name="modifyPassword">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 row">
|
|
|
|
|
<label for="passwordConfirm" class="col-sm-4 col-form-label text-end">새 비밀번호 확인</label>
|
|
|
|
|
<div class="col-sm-7">
|
|
|
|
|
<input type="password" class="form-control" id="passwordConfirm">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">닫기</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" id="savePasswordBtn">저장</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</html>
|