mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 01:02:14 +00:00
15 lines
478 B
Plaintext
15 lines
478 B
Plaintext
<html>
|
|
<body>
|
|
<h1>Secure Page</h1>
|
|
<p>This is a protected page. You can get to me if you've been remembered,
|
|
or if you've authenticated this session.</p>
|
|
|
|
<%if (request.isUserInRole("ROLE_SUPERVISOR")) { %>
|
|
<p>You are a supervisor! You can therefore see the <a href="extreme/index.jsp">extremely secure page</a>.</p>
|
|
<% } %>
|
|
|
|
<p><a href="../">Home</a>
|
|
<p><a href="ptSample">Proxy Ticket Sample page</a></p>
|
|
<p><a href="../j_spring_security_logout">Logout</a>
|
|
</body>
|
|
</html> |