{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Login" %} | {{ block.super }}{% endblock %} {% block search %}{% endblock %} {% block page_header %}{% endblock %} {% block bodyclass %}{% endblock %} {% block content %}
{% if next %}

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

{% endif %} {% if form.non_field_errors %}
{% endif %}
Login with your Sentry account
{% csrf_token %} {% for field in form %} {% include "sentry/partial/_form_field.html" %} {% endfor %}
{% if AUTH_PROVIDERS %}
Login{% if SOCIAL_AUTH_CREATE_USERS %} or Register{% endif %} with another account
{% 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 %}