{% extends "auth/base.html" %} {% block title %}Connection Not Started - {{ site_name() }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ title }}

{% if kind == "unknown_service" %}

The service that sent you here is unknown to {{ site_name() }}. For security reasons, {{ site_name() }} cannot allow you to grant it access to the following permissions:

{% elif kind == "blocked_permissions" %}

The service that sent you here requested permissions that {{ site_name() }} does not allow through this connection flow:

{% else %}

{{ summary }}

{% endif %} {% if blocked_permissions %}
    {% for permission in blocked_permissions %}
  • {{ permission.display_name }} {% if permission.description %} {{ permission.description }} {% else %} {{ permission.slug }} {% endif %}
  • {% endfor %}
{% endif %} {% if kind == "unknown_service" %}

Reach out to the {{ service_name or "service" }} administrators to have them verify their service with {{ site_name() }}.

{% else %}

{{ next_step }}

{% endif %} {% if developer_detail %}
Technical details

{{ developer_detail }}

{% endif %}
{% if return_url %} {{ return_label }} {% else %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}