| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : UseTermsLayerFormWeb.html
- * @desc : STYLE24이용약관
- *============================================================================
- * 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="policiesTermsLabel">STYLE24 이용약관</h5>
- </div>
- <div class="modal-body">
- <div class="pop_cont">
- <div class="text_wrap" th:utext="${#strings.replace(#strings.replace(clause,'&lt;','<'),'&gt;','>')}">
- </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>
|