403.jsp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <title>错误403</title>
  8. <style type="text/css">
  9. a:link,a:active,a:visited {
  10. color: blue, text-decoration : underline
  11. }
  12. a:hover {
  13. color: red;
  14. text-decoration: none
  15. }
  16. </style>
  17. </head>
  18. <body style="margin: 200px 0px 0px 0px">
  19. <div align="center">
  20. <img align="absmiddle"
  21. src="<%=request.getContextPath()%>/resource/images/logo_gray1.gif"
  22. border="0" />
  23. </div>
  24. <div align="center"
  25. style="font-weight: bold; color: red; padding: 40px">
  26. 提示您:禁止访问该页面。请确认您的身份内是否已经被授权访问该页面!
  27. </div>
  28. <div align="center" style="font-size: 10pt">
  29. 您可以选择转到:
  30. <a target="_top"
  31. href="<%=request.getContextPath().length() == 0 ? "/" : request.getContextPath()%>">首页</a>&nbsp;&nbsp;&nbsp;
  32. <a href="javascript:history.back()">返回</a>
  33. </div>
  34. </body>
  35. </html>