{% extends "accounts/base.html" %} {% load styled_forms %} {% block title %}{% trans "User Registration" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% trans "There were some problems in the form. Please review. Thanks!" %}
{{ error }}
{% blocktrans with l=field.label e=error %}{{ l }} - {{ e }}{% endblocktrans %}
{{ form.username.help_text }}
{{ form.username.errors.as_text }}
{{ form.first_name.errors.as_text }}
{{ form.last_name.errors.as_text }}
{{ form.email.errors.as_text }}
{{ form.password1.help_text }}
{{ form.password1.errors.as_text }}
{{ form.password2.errors.as_text }}
{{ form.captcha.errors.as_text }}