{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% block page_title %}{{page_title}}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if not error %}

{{ application.name }}

{% translate 'is requesting access to your Alliance Auth User data'%}

{% translate "Logged in as:" %} {{request.user.profile.main_character}} [ {{request.user.profile.main_character.corporation_ticker}} ]


{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% endif %} {% endfor %}

{% trans "The application is requesting the following" %}

{% for scope in scopes_descriptions %}

{{ scope }}

{% endfor %} {{ form.errors }} {{ form.non_field_errors }}

{% trans 'You will be redirected back to the application after authorization' %}

{% trans 'This Application cannot access other data within Alliance Auth!' %}


{% else %}

Error: {{ error.error }}

{{ error.description }}

{% endif %}
{% endblock %}