| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : SigninFormWeb.html
- * @desc : 로그인 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.02.15 gagamel 최초 작성
- *******************************************************************************
- -->
- <head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
- <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
- <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
- <body>
- <script th:inline="javascript">
- /*<![CDATA[*/
- const snsType = [[${snsType}]];
- const snsId = [[${snsId}]];
- if (snsType === 'KK') {
- if (gagajf.isNull(snsId)){
- mcxDialog.alertC("인증에 실패하였습니다.<br> 로그인 정보를 확인해주시기 바랍니다.", {
- sureBtnText: "확인",
- sureBtnClick: function() {
- self.close();
- }
- });
- } else {
- opener.fnSnsSigninCallback(snsId);
- self.close();
- }
- }
- /*]]>*/
- </script>
- </body>
- </html>
|