| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : PrivacyTrustLayerFormWeb.html
- * @desc : 개인정보 취급 위탁
- *============================================================================
- * STYLE24
- * Copyright(C) 2021 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.04.01 jsshin 최초 작성
- *******************************************************************************
- -->
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title" id="trustPrivacyLabel">개인정보 취급 위탁</h5>
- </div>
- <div class="modal-body">
- <div class="pop_cont">
- <div class="text_wrap">
- 개인정보 취급 위탁내용이 들어갑니다.<br>
- </div>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" id="btnClose" class="btn btn_default"><span>닫기</span></button>
- </div>
- </div>
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
- $("#btnClose").click(function() {
- $.modal.close();
- });
- /*]]>*/
- </script>
- </html>
|