{% extends "aristotle_mdr/users_management/register_base.html" %} {% load aristotle_tags compile_static %} {% load static from staticfiles %} {% block title %}Signup to create a new account{% endblock %} {% block left_side %}

You've been invited to the
{{config.SITE_NAME}}!

We need to collect some information from you to finish setting up your account.

{% endblock %} {% block right_side %}
{% csrf_token %}
{% if form.username.errors %}
{{ form.username.errors }}
{% endif %}

{{ form.username.help_text }}

{% if form.password.errors %}
{{ form.password.errors }}
{% endif %}

{{ form.password.help_text }}

{% if form.password.errors %}
{{ form.password_confirm.errors }}
{% endif %}

{{ form.password_confirm.help_text }}


{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}

We use your first name to personalise your interaction with the site.

{% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{% endblock %}