{% extends "sentry/bases/modal.html" %} {% load i18n %} {% block title %}{% trans "Organization Invite" %} | {{ block.super }}{% endblock %} {% block page_header_block %}{% endblock %} {% block bodyclass %}{% endblock %} {% block main %}

{% blocktrans %}{{ org_name }} is using Sentry to track and debug errors.{% endblocktrans %}

{% if existing_member %}

Your account ({{ request.user.username }}) is already a member of this organization.

Did you want to switch accounts?

{% csrf_token %}
{% endif %}

{% blocktrans %}You have been invited to join this organization.{% endblocktrans %}

{% if needs_authentication %}

{% trans "To continue, you must either login to your existing account, or create a new one." %}

{% trans "Create a new account" %}
{% elif needs_2fa %}

{% blocktrans %}To continue, {{ org_name }} requires all members to setup two-factor authentication.{% endblocktrans %}

{% trans "Setup Two-Factor Authentication" %}

{% else %}
{% csrf_token %}

{% endif %}
{% endblock %}