{% extends "sentry/layout.html" %} {% load url from future %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Register" %} | {{ block.super }}{% endblock %} {% block page_header_block %}{% endblock %} {% block bodyclass %}{% endblock %} {% block main %}
{{ form|as_crispy_errors }}
{% trans "Create a new account" %}
{% csrf_token %} {% for field in form %} {% include "sentry/partial/_form_field.html" %} {% 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 %}