28 lines
766 B
Plaintext
28 lines
766 B
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ page import="java.util.*" %>
|
|
<%@include file= "/init.jsp" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
<script>
|
|
$(function(){
|
|
$("#btnClose").click(function(){
|
|
top.window.close(0);
|
|
top.opener.document.location.reload();
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body class="backcolor">
|
|
<form name="form1" action="" method="post">
|
|
<div class="btnCenterWrap">
|
|
<center class="center_btns_wrap" style="top:30px;">
|
|
<input type="button" value="닫기" class="plm_btns" id="btnClose">
|
|
</center>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |