2020-05-26 20:55:37 +00:00
|
|
|
{% extends 'auth/base.html.j2' %}
|
|
|
|
|
|
|
|
{% block title %}{{ gettext('Consent') }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<p>
|
2023-10-09 19:58:44 +00:00
|
|
|
The application "{{ client.client_name }}" (id: {{ client.client_id }}) requested the following scopes: {{ requested_scope }}
|
2020-05-26 20:55:37 +00:00
|
|
|
</p>
|
|
|
|
<p> Allow this app to access that data?</p>
|
|
|
|
|
|
|
|
{{ render_form(form) }}
|
|
|
|
|
|
|
|
{% endblock %}
|