{% extends "accounts/accounts.html" %}{% load i18n l10n widget_tweaks get_social_backends %} {% block menu_signup %}
  • {% trans "Sign up" %}
  • {% endblock %} {% block body_class %}{{ block.super }} signup{% endblock %} {% block title %}{% trans "Sign up" %}{% endblock %} {% block panel %} {% block signup_form %}
    {% csrf_token %} {% include "_includes/form_errors.html" %} {% block signup_fields %} {% include "_includes/bigfield.html" with field=form.name|attr:"autofocus" %} {% include "_includes/bigfield.html" with field=form.email %} {% include "_includes/bigfield_password.html" with field=form.password1 %} {% include "_includes/bigfield_password.html" with field=form.password2 %} {% endblock %}
    {% get_social_backends as social_auth_backends %} {% if social_auth_backends %} {% trans "Sign up with" as verb %} {% include "_accounts/_includes/social_options.html" with verb=verb %} {% endif %}
    {% endblock %} {% endblock %}