UseTermsLayerFormWeb.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : UseTermsLayerFormWeb.html
  7. * @desc : STYLE24이용약관
  8. *============================================================================
  9. * STYLE24
  10. * Copyright(C) 2021 TSIT, All rights reserved.
  11. *============================================================================
  12. * VER DATE AUTHOR DESCRIPTION
  13. * === =========== ========== =============================================
  14. * 1.0 2021.04.01 jsshin 최초 작성
  15. *******************************************************************************
  16. -->
  17. <div class="modal-dialog" role="document">
  18. <div class="modal-content">
  19. <div class="modal-header">
  20. <h5 class="modal-title" id="policiesTermsLabel">STYLE24 이용약관</h5>
  21. </div>
  22. <div class="modal-body">
  23. <div class="pop_cont">
  24. <div class="text_wrap" th:utext="${#strings.replace(#strings.replace(clause,'&amplt;','<'),'&ampgt;','>')}">
  25. </div>
  26. </div>
  27. </div>
  28. <div class="modal-footer">
  29. <button type="button" id="btnClose" class="btn btn_default"><span>닫기</span></button>
  30. </div>
  31. </div>
  32. </div>
  33. <script th:inline="javascript">
  34. /*<![CDATA[*/
  35. $("#btnClose").click(function() {
  36. $.modal.close();
  37. });
  38. /*]]>*/
  39. </script>
  40. </html>