{% extends "inc/layout.html" %} {% block title %}Authorization Required{% endblock %} {% block content %}

An application is requesting access to your data.

Application name
{{ client.title }}
Description
{{ client.description }}
Owner
{{ client.owner }}
Website
{{ client.website }}
Access scope
    {% if 'id' in scope %}
  1. Your name and username
  2. {% endif %} {% if 'email' in scope %}
  3. Your email address
  4. {% endif %} {% for resource in resources %}
  5. {{ resource.title }} {% if resources[resource] %}
      {% for action in resources[resource] %}
    • {{ action.title }}
    • {% endfor %}
    {% endif %}
  6. {% endfor %}

You should authorize this only if you initiated the request and trust the application with your data.

{{ form.csrf() }} {% if form.csrf.errors %} {% for error in form.csrf.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endblock %}