{% extends "sentry/bases/modal.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Register" %} | {{ block.super }}{% endblock %} {% block main %}
{{ form|as_crispy_errors }}
{% trans "Create a new account" %}
{% csrf_token %} {{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% if AUTH_PROVIDERS and SOCIAL_AUTH_CREATE_USERS %}
{% trans "Register using another service" %}
{% 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 %}