| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : NiceCallbackFormWeb.html
- * @desc : NICE 인증콜백 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2021 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.02.09 jsshin 최초 작성
- *******************************************************************************
- -->
- <body>
- <script th:inline="javascript">
- /*<![CDATA[*/
- window.onload = function () {
- top.opener.fnNiceCallBack([[${sEncData}]], [[${authMethod}]]);
- self.close();
- }
- /*]]>*/
- </script>
- </body>
- </html>
|