{% extends "sentry/layout.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Login" %} | {{ block.super }}{% endblock %} {% block page_header_block %}{% endblock %} {% block bodyclass %}{% endblock %} {% block main %}
{% if next %}

{% trans "Please login to continue." %}

{% endif %}
{{ form|as_crispy_errors }}
{% trans "Login with your Sentry account" %}
{% csrf_token %} {% for field in form %} {% include "sentry/partial/_form_field.html" %} {% endfor %}
{% if CAN_REGISTER %} {% endif %}
{% if AUTH_PROVIDERS %}
{% if SOCIAL_AUTH_CREATE_USERS %} {% trans "Login or Register using another service" %} {% else %} {% trans "Login using another service"} {% endif %}
{% url sentry-account-settings-identities as identities_link %}

{% blocktrans with identities_link as link %}If you already have an account, you can associate a social identity in the identities page in your account settings (after you login).{% endblocktrans %}


{% endif %}
{% endblock %}