{% extends "auth/base.html" %} {% block title %}Authorize API Access - {{ site_name() }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Authorize API Access

{{ service_name }} wants API access connected to your account.

{% if service_url %} {% endif %} {% if requires_elevated_security %}
This request requires elevated security and will issue a user-bound service key.
{% endif %}

This will allow the service to:

{% for fragment in grant_fragments.before_permissions %} {% include fragment.template %} {% endfor %}
    {% for permission in permissions %}
  • {{ permission.display_name }} {% if permission.description %} {{ permission.description }} {% else %} {{ permission.slug }} {% endif %}
  • {% endfor %}
{{ csrf_field() }} {% for fragment in grant_fragments.after_permissions %} {% include fragment.template %} {% endfor %} {% for fragment in grant_fragments.before_actions %} {% include fragment.template %} {% endfor %}
{% endblock %}