{% import "_macros.html" as macros %} Authorize - NanoIDP {% macro client_info_block() %}
{% if logo_url %} {% else %} {% endif %}
{% if not client or client.show_client_id %}{{ client_id }}{% endif %} {% if client and client.show_description and client.description %}{{ client.description }}{% endif %} wants to access your account
Requested permissions:
{% for s in scope.split() %} {% if s == 'openid' %} {% elif s == 'profile' %} {% elif s == 'email' %} {% elif s == 'offline_access' %} {% else %} {% endif %} {{ s }} {% endfor %}
{% endmacro %} {% macro login_form_block() %} {% if persona_mode %}
{{ macros.persona_picker(users, "Persona login - select a user to authorize.") }}
{% else %}
{% endif %} {% endmacro %} {% set horizontal = client and client.layout == 'horizontal' %}

NanoIDP

Authorization Request
{% if error %} {% endif %} {% if horizontal %}
{{ client_info_block() }}
{{ login_form_block() }}
{% else %} {{ client_info_block() }} {{ login_form_block() }} {% endif %}