Test app for OIDC
{% if not user %}
{% for provider in settings.oidc.providers %}
Login with: {{ provider.name }}
{% else %}
Cannot login: no oidc prodiver in settings.yaml
{% endfor %}
{% endif %} {% if user %}
Hey, {{ user.name }}
{% if user.picture %}
{% endif %}
{{ user.email }}
Logout
{% endif %}
Access protected content
Access + foorole protected content
Access + barrole protected content
{% if user and settings.oidc.show_session_details %}
Session details:
{% for key, value in auth_data.items() %}
{{ key }}
: {{ value }}
{% endfor %}
{% endif %}