NiceCallbackFormWeb.html 914 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : NiceCallbackFormWeb.html
  7. * @desc : NICE 인증콜백 Page
  8. *============================================================================
  9. * STYLE24
  10. * Copyright(C) 2021 TSIT, All rights reserved.
  11. *============================================================================
  12. * VER DATE AUTHOR DESCRIPTION
  13. * === =========== ========== =============================================
  14. * 1.0 2021.02.09 jsshin 최초 작성
  15. *******************************************************************************
  16. -->
  17. <body>
  18. <script th:inline="javascript">
  19. /*<![CDATA[*/
  20. window.onload = function () {
  21. top.opener.fnNiceCallBack([[${sEncData}]], [[${authMethod}]]);
  22. self.close();
  23. }
  24. /*]]>*/
  25. </script>
  26. </body>
  27. </html>