SnsCallBackFormWeb.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : SigninFormWeb.html
  7. * @desc : 로그인 Page
  8. *============================================================================
  9. * STYLE24
  10. * Copyright(C) 2020 TSIT, All rights reserved.
  11. *============================================================================
  12. * VER DATE AUTHOR DESCRIPTION
  13. * === =========== ========== =============================================
  14. * 1.0 2021.02.15 gagamel 최초 작성
  15. *******************************************************************************
  16. -->
  17. <head th:replace="~{web/common/fragments/HeadWeb :: head}"></head>
  18. <th:block th:replace="~{web/common/fragments/VariablesWeb :: variables}"></th:block>
  19. <th:block th:replace="~{web/common/fragments/ScriptsWeb :: scripts}"></th:block>
  20. <body>
  21. <script th:inline="javascript">
  22. /*<![CDATA[*/
  23. const resultMap = [[${resultMap}]];
  24. if (gagajf.isNull(resultMap.snsId) && gagajf.isNull(resultMap.snsType)){
  25. mcxDialog.alertC("인증에 실패하였습니다.<br> 로그인 정보를 확인해주시기 바랍니다.", {
  26. sureBtnText: "확인",
  27. sureBtnClick: function() {
  28. self.close();
  29. }
  30. });
  31. } else {
  32. opener.fnSnsSigninCallback(resultMap);
  33. self.close();
  34. }
  35. /*]]>*/
  36. </script>
  37. </body>
  38. </html>