{% extends "_base.html" %} {% block content %}

End Session

Important: The end session endpoint implemented in OpenID Provider Mock is just a dummy endpoint to simulate ending a session. OpenID Provider Mock does not keep track of a user session.

{% if request_parameters %}
Request parameters
{% for name, value in request_parameters.items() %}
{{ name }}
{{ value }}
{% endfor %}
{% endif %} {% if not id_token_hint %}

Recommended parameter id_token_hint not set (cf. https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout).

{% endif %}
{% if redirect_uri %} {% endif %}
{% if redirect_uri %}

You will be redirected to {{ redirect_uri }}.

{% endif %} {% endblock %}