15 lines
307 B
Plaintext
15 lines
307 B
Plaintext
|
{% extends 'auth/base.html.j2' %}
|
||
|
|
||
|
{% block title %}{{ gettext('Consent') }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<p>
|
||
|
The application "{{ client.client_id }}" requested the following scopes: {{ requested_scope }}
|
||
|
</p>
|
||
|
<p> Allow this app to access that data?</p>
|
||
|
|
||
|
{{ render_form(form) }}
|
||
|
|
||
|
{% endblock %}
|