{% extends "karaage/common/profile_base.html" %} {% load forms %} {% load applications %} {% block title %}SAML - My profile{% endblock %} {% block profile_title %}SAML{% endblock %} {% block profile_content %}

SAML Details

{% if saml_session %}

You have an established SAML session.

request.META values:

{% for key,value in request.META.items %} {% endfor %}
{{ key }}{{ value }}

attrs values:

{% for key,value in attrs.items %} {% endfor %}
{{ key }}{{ value }}
{% csrf_token %}
{% else %}

You do not have an established SAML session.

{% endif %} {% if person %}

You are logged in to Karaage as {{ person }}.

{% else %}

You are not logged in to Karaage.

{% endif %} {% if not saml_session and person and person.institute.saml_entityid %}
{% csrf_token %}
{% endif %} {% if saml_session and person %} {% if not person.saml_id or person.saml_id != attrs.persistent_id %}

If you continue and click Register, then your details, including your email address, will be replaced by those above and you will be able to log in using SAML.

{% csrf_token %}
{% endif %} {% endif %}
{% endblock %}