{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Sign up" %}{% endblock %} {% block content %}

{% trans "Create an account" %}

{% if form.errors %}

{% trans "Please correct the errors below: " %}{{ form.non_field_errors }}

{% endif %}
{% csrf_token %} {{ form.as_table }}

{% trans "Please fill out the form (all fields are required), and your account will be created." %}
{% trans "You'll then be sent an email with instructions on how to finish your registration." %}

{% trans "If you already have an account, you can" %} {% trans "login here" %}.

{% endblock %} {% block login %}{% endblock %}