{% extends "_base.html" %} {% macro identity_list(subjects) %} {% endmacro %} {% block content %}

Authorize Client

Choose an identity to use.

{% if predefined_users %}

Predefined users

{{ identity_list(predefined_users) }}
{% endif %}

Custom user

{% if recent_subjects %}

Recent users

{{ identity_list(recent_subjects) }}
{% endif %}

Client info

Client ID {{ client_id }}
Redirect URI {{ redirect_uri }}
Scopes {% for scope in scopes %}{{ scope }} {% endfor %}
{% endblock %}