{% extends "account/base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load account socialaccount %} {% block title %}{% trans "Sign up" %}{% endblock %} {% block body_outer %}
{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}

{% blocktrans with site.name as site_name %}Sign up with one of your existing third party accounts{% endblocktrans %}

{% include "socialaccount/snippets/provider_list.html" with process="signup" %} {% include "socialaccount/snippets/login_extra.html" %}
{% endif %}

Create a new local account

{% csrf_token %} {{ form|as_bootstrap }} {% if redirect_field_value %} {% endif %}
{% endblock %} {% block extra_script %} {{ block.super }} {% endblock %}