{% extends "django_registration/registration_base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}{% trans "Register for an account" %}{% endblock %} {% block content %}
Create your account
{% csrf_token %} {% if form.errors %}

You have some errors in your form. Please complete the form according to the helptexts. Avoid spaces and special characters in the username.

{% endif %} {{ form.username }}
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. No spaces please.
{{ form.email }} {{ form.password1 }} {{ form.password2 }}
Enter the same password as before, for verification.
{% endblock %}