index.jsp 405 B

123456789101112131415
  1. <html>
  2. <body>
  3. <h1>Secure Page</h1>
  4. This is a protected page. You can get to me if you've been remembered,
  5. or if you've authenticated this session.<br><br>
  6. <%if (request.isUserInRole("ROLE_SUPERVISOR")) { %>
  7. You are a supervisor! You can therefore see the <a href="extreme/index.jsp">extremely secure page</a>.<br><br>
  8. <% } %>
  9. <p><a href="../">Home</a>
  10. <p><a href="../logout">Logout</a>
  11. </body>
  12. </html>