11 lines
No EOL
631 B
Text
11 lines
No EOL
631 B
Text
<%@ page import="org.keycloak.common.util.KeycloakUriBuilder" %>
|
|
<%@ page import="org.keycloak.constants.ServiceUrlConstants" %>
|
|
<%
|
|
String scheme = request.getScheme();
|
|
String host = request.getServerName();
|
|
int port = request.getServerPort();
|
|
String contextPath = request.getContextPath();
|
|
String redirectUri = scheme + "://" + host + ":" + port + contextPath;
|
|
%>
|
|
<h2>Click <a href="<%= KeycloakUriBuilder.fromUri("http://localhost:8080/auth").path(ServiceUrlConstants.TOKEN_SERVICE_LOGOUT_PATH)
|
|
.queryParam("redirect_uri", redirectUri).build("servlet-authz").toString()%>">here</a> to logout.</h2> |