{% extends 'layout.html' %} {% load i18n %} {% load static %} {% block content %}

{% trans 'Sign up' %}

{% csrf_token %} {{ form.username.errors }}

{% trans '2 to 32 alphanumeric characters.' %}

{{ form.password.errors }}

{% trans 'Anything from 1 to 256 characters.' %}

{% trans 'Same password.' %}

{{ form.email.errors }}

{% trans 'Optional.' %} {% trans 'Used to recover your password and confirm stuff.' %}

{% if HCAPTCHA_SITE_KEY and not request.session.signup_captcha_pass %}
{% endif %}
{% endblock %}