You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

84 lines
1.9 KiB

<%@page import="org.wdk.WDKConstant"%>
<%@page import="java.io.File"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
String WDK_ROOT = WDKCore.WDK_ROOT;
String RSS_ROOT = WDK_ROOT +"/"+WDKConstant.Theme+"/"+WDKCore.THEME;
%>
<!DOCTYPE html>
<%@page import="org.wdk.WDKCore"%>
<%@page import="org.wdk.WDK"%><html>
<head>
<base href="<%=basePath%>" target="_self">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="renderer" content="webkit">
<title>系统登录</title>
<script type="text/javascript" src="<%=WDK_ROOT%>/theme/bs/core/js/wdk_bs.js"></script>
<style>
.y-row {
min-width: 1000px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
zoom: 1;
}
.tbady {
margin-top: 50px;
position: relative;
min-height: 310px;
padding-left: 540px;
}
.tbady .content .info {
height: 60px;
font-size: 14px;
color: #666;
}
.tbady>img {
position: absolute;
left: 0;
}
img {
border: 0;
}
.tbady .content h1 {
padding-top: 80px;
font-size: 28px;
}
p {
display: block;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}
</style>
</head>
<body>
<div class="y-row" data-spm="1">
<div class="tbady">
<img src="wdk/pb/passport/images/nop.png">
<div class="content">
<h1>抱歉,页面无法访问…</h1>
<p class="info">
<label>原因:</label>
<span id="msg"></span>
</p>
</div>
</div>
</div>
</body>
<script>
var msg = decodeURIComponent($.getURLParam('msg'));
console.log("msg="+msg);
$("#msg").html(msg);
</script>
</html>