- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %>
- <html>
- <body>
- <h1>VERY Secure Page</h1>
- This is a protected page. You can only see me if you are a supervisor.
- <p><a href="../../">Home</a>
- <form action="<c:url value="/j_spring_security_logout"/>" method="post">
- <input type="submit" value="Logoff"/>
- <security:csrfInput/>
- </form>
- </body>
- </html>
|