41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
<!-- views/fragment/popup/withdrawalPopup.html -->
|
|
<div th:fragment="withdrawalPopup" id="withdrawalPopup" style="display: none;">
|
|
<!-- Modal Backdrop -->
|
|
<div class="modal-backdrop" id="withdrawalModalBackdrop"></div>
|
|
|
|
<!-- Modal Wrapper -->
|
|
<div class="modal" id="withdrawalModal">
|
|
<div class="modal-dialog">
|
|
|
|
<!-- Modal Header -->
|
|
<div class="modal-header">
|
|
<h3 class="modal-title">API Portal 회원탈퇴</h3>
|
|
<button type="button" class="modal-close" id="withdrawalPopupCloseButton">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<line x1="18" y1="6" x2="6" y2="18"></line>
|
|
<line x1="6" y1="6" x2="18" y2="18"></line>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Modal Body -->
|
|
<div class="modal-body">
|
|
<ul style="margin: 0; padding-left: 20px; color: #64748B; font-size: 14px; line-height: 1.8;">
|
|
<li>회원 탈퇴는 API Portal 사이트의 회원 탈퇴입니다.</li>
|
|
<li>사용중인 API 서비스의 중지는 제휴 담당자를 통해 문의 주시기 바랍니다.</li>
|
|
</ul>
|
|
<form id="withdrawalForm" th:action="@{/withdraw}" method="POST" style="display:none;">
|
|
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Modal Footer -->
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" id="withdrawalPopupCancelButton">취소</button>
|
|
<button type="button" class="btn btn-primary" id="withdrawalPopupConfirmButton">탈퇴신청</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|