{% extends "base.html" %} {% load i18n %} {% load orbit %} {% block title %} Authorization request {% endblock %} {% block content %}

Authorization

{% csrf_token %} {{ hidden_inputs }}
{% if scopes|length > 0 %}

{% trans "L'application" %} {{ client.name }} {% trans "demande à accéder à ces informations te concernant :" %}

    {% for scope in scopes %}
  • {{ scope.name }}
    {{ scope.description }}
  • {% endfor %}
{% else %}

The Community Platform BSGN need to access your profile.

{% endif %}
{% firstof user.name user.username user.email %}
{% firstof user.email %}
Terms & Conditions - Privacy Policy
{% endblock %}