PrivacyTrustLayerFormWeb.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : PrivacyTrustLayerFormWeb.html
  7. * @desc : 개인정보 취급 위탁
  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="trustPrivacyLabel">개인정보 취급 위탁</h5>
  21. </div>
  22. <div class="modal-body">
  23. <div class="pop_cont">
  24. <div class="text_wrap">
  25. 개인정보 취급 위탁내용이 들어갑니다.<br>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="modal-footer">
  30. <button type="button" id="btnClose" class="btn btn_default"><span>닫기</span></button>
  31. </div>
  32. </div>
  33. </div>
  34. <script th:inline="javascript">
  35. /*<![CDATA[*/
  36. $("#btnClose").click(function() {
  37. $.modal.close();
  38. });
  39. /*]]>*/
  40. </script>
  41. </html>