DormantCertifyCompleteFormWeb.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  5. layout:decorator="web/common/layout/DefaultLayoutWeb">
  6. <!--
  7. *******************************************************************************
  8. * @source : DormantCertifyFormWeb.html
  9. * @desc : 휴면회원 결과 Page
  10. *============================================================================
  11. * STYLE24
  12. * Copyright(C) 2021 TSIT, All rights reserved.
  13. *============================================================================
  14. * VER DATE AUTHOR DESCRIPTION
  15. * === =========== ========== =============================================
  16. * 1.0 2021.02.05 jsshin 최초 작성
  17. *******************************************************************************
  18. -->
  19. <body>
  20. <th:block layout:fragment="content">
  21. <div id="container" class="container mb">
  22. <div class="wrap">
  23. <div class="content dormant_clear"> <!-- 페이지특정 클래스 = dormant_clear -->
  24. <div class="cont_head">
  25. <h4>휴면회원 전환안내</h4>
  26. </div>
  27. <div class="cont_body">
  28. <form class="form_wrap form_col_c" role="form">
  29. <div class="form_info">
  30. <span class="ico_content_dormant2"></span>
  31. <p class="c_primary">휴면상태가 해제되었습니다!</p>
  32. <p class="t_info mt10">지금 바로STYLE24의 모든 서비스를 이용하실 수 있습니다!</p>
  33. </div>
  34. <div class="btn_group_block btn_group_md ui_row">
  35. <div class="ui_col_12">
  36. <button type="button" class="btn btn_dark btn_block" onclick="cfnGoToPage(_PAGE_LOGIN);"><span>로그인</span></button>
  37. </div>
  38. </div>
  39. </form>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <script th:inline="javascript">
  45. /*<![CDATA[*/
  46. /*]]>*/
  47. </script>
  48. </th:block>
  49. </body>
  50. </html>