{% extends "account/base.html" %} {% block head_title %}{{ _('Registration') }}{% endblock %} {% block content %} {% csrf_token %} {{ _("Create your account") }} {{ form.non_field_errors() }} {{ form['username'].label_tag() }} {{ form['username'].as_widget() }} {% if form['username'].help_text %} {{ form['username'].help_text }} {% endif %} {{ form['email'].label_tag() }} {{ form['email'].as_widget() }} {% if form['email'].help_text %} {{ form['email'].help_text }} {% endif %} {{ form['password1'].label_tag() }} {{ form['password1'].as_widget() }} {{ form['password1'].errors }} {% if form['password1'].help_text %} {{ form['password1'].help_text }} {% endif %} {{ form['password2'].label_tag() }} {{ form['password2'].as_widget() }} {% if form['password2'].help_text %} {{ form['password2'].help_text }} {% endif %} {% if redirect_field_value %} {% endif %} {{ _("Create your account") }} {{ _('By creating an account, you agree to our Conditions of Use.') }} {{ _('Already have an account?') }} {{ _('Sign in') }} {% endblock %}
{{ form['username'].help_text }}
{{ form['email'].help_text }}
{{ form['password1'].help_text }}
{{ form['password2'].help_text }}
{{ _('By creating an account, you agree to our Conditions of Use.') }}