| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : NiceCellPhoneFormWeb.html
- * @desc : NICE 휴대폰 인증 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2021 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.02.09 jsshin 최초 작성
- *******************************************************************************
- -->
- <body>
- <form name="niceAuthForm" id="niceAuthForm" method="post" >
- <input type="hidden" name="m" value="checkplusSerivce" />
- <input type="hidden" name="EncodeData" th:value="${sEncData}" />
- </form>
- <script th:inline="javascript">
- /*<![CDATA[*/
- window.onload = function () {
- document.niceAuthForm.action="https://nice.checkplus.co.kr/CheckPlusSafeModel/checkplus.cb";
- document.niceAuthForm.target="popupCellphone";
- document.niceAuthForm.submit();
- };
- /*]]>*/
- </script>
- </body>
- </html>
|