{% extends "sentry/bases/organization.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block org_auth_settings_nav %}active{% endblock %} {% block main %}

{{ provider_name }} Authentication

{% csrf_token %}

Login URL

While Sentry will try to be clever about directing members to the appropriate login form, you're safest just to hit up your organization-specific login when visiting the app:

{{ login_url }}
{% if pending_links_count %}

Unlinked Members

There are currently {{ pending_links_count }} member(s) who have not yet linked their account with {{ provider_name }}. Until this is done they will be unable to access the organization.

{% endif %} {% if content %}
{{ content }} {% endif %}

General Settings

{{ form|as_crispy_errors }} {% for field in form %} {% if forloop.last %} {% endif %} {{ field|as_crispy_field }} {% endfor %}

Disable {{ provider_name }} Authentication

Your organization will no longer being able to authenticate with their existing accounts. This will prevent any existing users from logging in unless they have access outside of SSO.

{% endblock %}