{% 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 %}

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

{% blocktrans %} Please use the forget password link if you think you already had an account. {% endblocktrans %}

{% endif %} {{ form.username }}
{% blocktrans %} Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. No spaces please. {% endblocktrans %}
{{ form.email }} {{ form.password1 }} {{ form.password2 }}
{% blocktrans %} Enter the same password as before, for verification. {% endblocktrans %}
{# Assumes you setup the password_reset view in your URLconf #}

Lost password?

{% endblock %}