2020-05-13 15:04:22 +00:00
|
|
|
{% extends 'frontend/base.html.j2' %}
|
|
|
|
|
|
|
|
{% block title %}{{ gettext('Oauth2 Request') }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<p>
|
2020-05-13 18:08:55 +00:00
|
|
|
A service ask for access to your account data.<br>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<b> Requested Scopes: {{ auth_req['scope'] }}</b>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
You can confirm this pressing "Continue"
|
2020-05-13 15:04:22 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
{{ render_form(form) }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|