index.jsp 445 B

123456789101112131415
  1. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %>
  3. <html>
  4. <body>
  5. <h1>VERY Secure Page</h1>
  6. This is a protected page. You can only see me if you are a supervisor.
  7. <p><a href="../../">Home</a>
  8. <form action="<c:url value="/j_spring_security_logout"/>" method="post">
  9. <input type="submit" value="Logoff"/>
  10. <security:csrfInput/>
  11. </form>
  12. </body>
  13. </html>