{% extends 'default.html' %} {% block title %} Authorization {% endblock %} {% block default_content %}
{% if client_user %}
You have already authorized {{ client.name }}.
{{ client.name }} has access to the following information:
    {% for scope in client.scopes %}
  • {{ scope.name }}: {{ user_info[scope.name] }}
  • {% endfor %}
{% else %}
{{ client.name }} will receive your following information:
    {% for scope in client.scopes %}
  • {{ scope.name }}
  • {% endfor %}
{% endif %} {% if client_user %} {% else %}
If checked, a new random email address will be generated for this app.
{% endif %}
{% endblock %}