loggedout.jsp 536 B

1234567891011121314151617181920
  1. <%@page session="false" %>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  4. <html>
  5. <head>
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. <link rel="stylesheet" href="<c:url value='/static/css/tutorial.css'/>" type="text/css" />
  8. <title>Logged Out</title>
  9. </head>
  10. <body>
  11. <div id="content">
  12. <h2>Logged Out</h2>
  13. <p>
  14. You have been logged out. <a href="<c:url value='/'/>">Start again</a>.
  15. </p>
  16. </div>
  17. </body>
  18. </html>