48 lines
1.8 KiB
Plaintext
48 lines
1.8 KiB
Plaintext
<%@ page contentType="text/html; charset=utf-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
<%
|
|
//************************************************************************
|
|
// //
|
|
// 본 샘플소스는 개발 및 테스트를 위한 목적으로 만들어졌으며, //
|
|
// //
|
|
// 실제 서비스에 그대로 사용하는 것을 금합니다. //
|
|
// //
|
|
//************************************************************************
|
|
%>
|
|
<!-- [본인인증서비스 테스트 결과 수신 Sample] <br> <br> -->
|
|
<script src="<c:url value='/js/jquery.js' />"></script>
|
|
<html>
|
|
<head>
|
|
<meta name="robots" content="noindex">
|
|
|
|
<script language=javascript>
|
|
$(document).ready(function() {
|
|
|
|
var resultFlag = '${resultDnFlag}';
|
|
opener.parentVal = resultFlag;
|
|
var resultNameChk = '${resultNameChk}';
|
|
opener.nameChkVal = resultNameChk;
|
|
opener.insertDocumentForm.ownerName.value = "${searchVO.name}";
|
|
opener.insertDocumentForm.CI.value = "${CI}";
|
|
opener.insertDocumentForm.birthDay.value = "${birthDay}";
|
|
opener.hpCertChkResult();
|
|
|
|
self.close();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<br><br>
|
|
<br>
|
|
<table cellpadding=1 cellspacing=1>
|
|
<tr>
|
|
<td align=left>인증이 완료되었습니다.</td>
|
|
<td align=left><button type="button" onclick="self.close();">닫기</button></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |