{% extends "base.html" %} {% block title %}Authorization Request - Gondulf{% endblock %} {% block content %}

Authorization Request

{% if client_metadata %}
{% if client_metadata.logo %} {% endif %}

{{ client_metadata.name or client_id }}

{% if client_metadata.url %}

{{ client_metadata.url }}

{% endif %}

The application {{ client_metadata.name or client_id }} wants to authenticate you.

{% else %}

{{ client_id }}

The application {{ client_id }} wants to authenticate you.

{% endif %} {% if scope %}

Requested permissions: {{ scope }}

{% endif %}

You will be identified as: {{ me }}

{% if error %}

{{ error }}

{% endif %}
{% endblock %}