Files
spring-security/samples/xml/openid/src/main/webapp/index.jsp
Josh Cummings b04b34ba85 Fix Logout in OpenID Sample
Fixes gh-8554
2020-05-19 13:02:04 -06:00

39 lines
1.3 KiB
Plaintext

<%@ page import="org.springframework.security.web.csrf.CsrfToken" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
<html>
<body>
<h1>OpenID Sample Home Page</h1>
<p><strong>
NOTE: The OpenID 1.0 and 2.0 protocols have been deprecated and users are
<a href="https://openid.net/specs/openid-connect-migration-1_0.html">encouraged to migrate</a>
to <a href="https://openid.net/connect/">OpenID Connect</a>, which is supported by <code>spring-security-oauth2</code>.
</strong></p>
<sec:authentication property='principal.newUser' var='isNew' />
<p>
Welcome<c:if test="${!isNew}"> back,</c:if> <sec:authentication property='principal.name' />!
</p>
<c:if test="${isNew}">
<p>
As a first time user of this site, your OpenID identity has been registered
by the application and will be recognized if you return.
</p>
</c:if>
<h3>Technical Information</h3>
<p>
Your principal object is....: <%= request.getUserPrincipal() %>
</p>
<% CsrfToken token = (CsrfToken) request.getAttribute(CsrfToken.class.getName()); %>
<form id="logout" method="post" action="logout">
<input type="hidden" name="<%= token.getParameterName() %>"
value="<%= token.getToken() %>"/>
</form>
<p><a href="#" onclick="document.forms[0].submit()">Logout</a></p>
</body>
</html>