|
|
@@ -0,0 +1,48 @@
|
|
|
+<!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>
|