{% extends "sentry/bases/modal.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Auth" %} | {{ block.super }}{% endblock %} {% block modal_header_link %} {{ settings_url }} {% endblock %} {% block modal_header_extra %} Back to Organization Settings {% 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 %} {{ content|default_if_none:'' }} General Settings {{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% if forloop.last %}
{% if disabled %} {% else %} {% endif %}
{% endif %} {% endfor %}
{% if scim_api_token %}

SCIM Information

Auth Token:
{{ scim_api_token }}
SCIM URL:
{{ scim_url }}

See provider specific SCIM documentation here.

{% endif %}

Disable {{ provider_name }} Authentication

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

{% if disabled %} {% else %} {% endif %}
{% endblock %}