oidc-fastapi-test/src/oidc_test/templates/non_compliant_logout.html
2025-01-10 19:03:09 +01:00

17 lines
690 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>Warning</h2>
<p>
You are logged out from the application, but the browser still has the
authorisation to log in again without asking for credentials.
</p>
<p>
This is because {{ provider.name }} does not provide "end_session_endpoint" in its metadata
(see: <a href="{{ provider._server_metadata_url }}">{{ provider._server_metadata_url }}</a>).
</p>
<p>
You can just also go back to the <a href="{{ home_url }}">application home page</a>, but
it recommended to go to the <a href="{{ provider.server_metadata['issuer'] }}">provider's site</a>
and log out explicitely from there.
</p>
{% endblock %}