{% extends 'layout/auth_base.html' %} {% block content %}
{% block auth_content %}
{# TODO: replace icons with user profile image and app logo #}
{{ session.user.full_name }}
{{ application.name }}

{{ application.name }} {% trans %}is requesting the following permissions:{% endtrans %}
    {% for scope in authorized_scopes|sort %}
  • {{ scope }}
  • {% endfor %} {% for scope in new_scopes|sort %}
  • {{ scope }}
  • {% endfor %}
{% endblock %}
{% endblock %}