{% extends "account/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load account socialaccount %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}

{% blocktrans with site.name as site_name %} Please sign up with one of your existing third party accounts. Or, sign up for a {{ site_name }} account with your email address using the form below. {% endblocktrans %}

{% include "profiles/partials/or.html" %}
{% include "socialaccount/snippets/login_extra.html" %} {% else %}

{% blocktrans %} Already have an account? Then please sign in. {% endblocktrans %}

{% endif %}
{% csrf_token %} {{ form|crispy }} {% if redirect_field_value %} {% endif %}
{% endblock %}