| 1234567891011121314151617181920212223242526272829303132 |
- <%@ page language="java" pageEncoding="UTF-8"
- contentType="text/html; charset=UTF-8"%>
- <%
- request.getSession(true).invalidate();//清空session
- String ctx = request.getContextPath();
- %>
- <style>
- body{
- background-color: #fff;
- }
- .div-error {
- background-color: #fff;
- width:500px; margin:100px auto; padding-right:150px;
- }
- img {
- border: 0px;
- width: 409px;
- }
- </style>
- <body>
- <div class="div-error" >
- <div style="text-align: center;">
- <img src="<%=ctx %>/themes/default/images/warn.jpg"/>
- <p>
- <strong style="font-size:42px;margin:10px auto;">登录超时,请重新登录</strong>
- </p>
- </div>
- </div>
- </body>
|