{% extends "sentry/bases/auth.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_assets %} {% block scripts %} {{ block.super }} {% script %} {% endscript %} {% endblock %} {% block title %}{% trans "Sign In" %} | {{ block.super }}{% endblock %} {% block auth_container %}

{{ organization.name }}

{% if provider_name %}
{% csrf_token %}

{% if authenticated %} {{ organization.name }} requires signing in with {{ provider_name }}. {% else %} Sign in with your {{ provider_name }} account to continue. {% endif %}

{% if terms_url and privacy_policy_url and is_provider_partner %} By clicking the login button you are accepting Sentry’s terms of service and privacy policy. {% endif %}

{% else %}
{% csrf_token %} {{ login_form|as_crispy_errors }} {% for field in login_form %} {{ field|as_crispy_field }} {% endfor %}
{% if google_login_link or github_login_link or vsts_login_link %}
{% if google_login_link %}

{% endif %} {% if github_login_link %}

{% endif %} {% if vsts_login_link %}

{% endif %}
{% endif %}
{% csrf_token %} {{ register_form|as_crispy_errors }} {% for field in register_form %} {{ field|as_crispy_field }} {% endfor %}
{% endif %}
{% endblock %}