| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorator="web/common/layout/DefaultLayoutWeb">
- <!--
- *******************************************************************************
- * @source : DormantCertifyFormWeb.html
- * @desc : 휴면회원 결과 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2021 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.02.05 jsshin 최초 작성
- *******************************************************************************
- -->
- <body>
- <th:block layout:fragment="content">
- <div id="container" class="container mb">
- <div class="wrap">
- <div class="content dormant_clear"> <!-- 페이지특정 클래스 = dormant_clear -->
- <div class="cont_head">
- <h4>휴면회원 전환안내</h4>
- </div>
- <div class="cont_body">
- <form class="form_wrap form_col_c" role="form">
- <div class="form_info">
- <span class="ico_content_dormant2"></span>
- <p class="c_primary">휴면상태가 해제되었습니다!</p>
- <p class="t_info mt10">지금 바로STYLE24의 모든 서비스를 이용하실 수 있습니다!</p>
- </div>
- <div class="btn_group_block btn_group_md ui_row">
- <div class="ui_col_12">
- <button type="button" class="btn btn_dark btn_block" onclick="cfnGoToPage(_PAGE_LOGIN);"><span>로그인</span></button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
- /*]]>*/
- </script>
- </th:block>
- </body>
- </html>
|