{% extends "aristotle_mdr/users_management/register_base.html" %} {% load aristotle_tags %} {% 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.short_name.errors %}
{{ form.short_name.errors }}
{% endif %}
{% if form.full_name.errors %}
{{ form.full_name.errors }}
{% endif %}

{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{% 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 }}

{% endblock %}