oidc-fastapi-test/src/oidc_test/templates/non_compliant_logout.html

18 lines
690 B
HTML
Raw Normal View History

2025-01-09 23:41:32 +01:00
{% 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>
2025-01-10 19:03:09 +01:00
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>).
2025-01-09 23:41:32 +01:00
</p>
<p>
2025-01-10 19:03:09 +01:00
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.
2025-01-09 23:41:32 +01:00
</p>
{% endblock %}