{% extends "saml2sp/base.html" %}
{% block content %}
Welcome, {{ user.username }}!
The Identity Provider returned this assertion:
{% if attributes %}
This assertion includes these attributes:
{% for name, value in attributes.items %}
{{ name }}: {{ value }}
{% endfor %}
{% else %}
This assertion included no attributes.
{% endif %}
You are now signed in at the Service Provider.
You may continue to your original destination here: {{ sso_destination }}
{% endblock content %}