{# _auth_main_consent.html — OAuth consent screen column. Renders
standalone for HTMX fragment responses. Expected context: application_name, app_name, logo_url, scope_items, client_id, redirect_uri, response_type, scope, state_param, code_challenge, code_challenge_method, nonce, csrf_token, is_production #} {% import "_partials/_auth_macros.html" as auth %}
{{ auth.kicker(app_name, "Consent") }}
{% if logo_url and logo_url is startingwith("https://") %} {{ application_name }} {% endif %}

{{ application_name }}

wants to access the following:

    {% for item in scope_items %}
  • {{ item.description }}
  • {% endfor %}
{% if nonce %}{% endif %}
{% if user_email %}

Authorizing as {{ user_email }}

{% endif %}

Authorizing will redirect you to {{ redirect_uri }}