NiceCellPhoneFormWeb.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : NiceCellPhoneFormWeb.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. <form name="niceAuthForm" id="niceAuthForm" method="post" >
  19. <input type="hidden" name="m" value="checkplusSerivce" />
  20. <input type="hidden" name="EncodeData" th:value="${sEncData}" />
  21. </form>
  22. <script th:inline="javascript">
  23. /*<![CDATA[*/
  24. window.onload = function () {
  25. document.niceAuthForm.action="https://nice.checkplus.co.kr/CheckPlusSafeModel/checkplus.cb";
  26. document.niceAuthForm.target="popupCellphone";
  27. document.niceAuthForm.submit();
  28. };
  29. /*]]>*/
  30. </script>
  31. </body>
  32. </html>