{% extends "base.html" %} {% block title %}Authorize access - ActingWeb{% endblock %} {% block content %}

Authorize access

{{ message|default('An application is requesting access to your ActingWeb data.') }}

{% if client_name %}

{{ client_name }}{% if client_id %} ({{ client_id }}){% endif %}

{% endif %}
{% if oauth2_trust_control_enabled and trust_types %} {% elif default_trust_type %} {% endif %}

{% if oauth_providers %}

Or sign in with

{% for provider in oauth_providers %} {% set purl = provider.get('url') if provider is mapping else '' %} {% if purl %} {{ (provider.get('display_name') or provider.get('name') or 'provider') if provider is mapping else 'provider' }} {% endif %} {% endfor %}
{% endif %}
{% endblock %}