{% extends "base.html" %} {% block title %}Register - Mimir{% endblock %} {% block content %}

Create your Mimir account

Already have an account? Sign in

{% if errors.non_field_errors %} {% endif %}
{% csrf_token %}
{% if errors.first_name %}
{{ errors.first_name.0 }}
{% endif %}
{% if errors.last_name %}
{{ errors.last_name.0 }}
{% endif %}
3–30 characters. Used to sign in.
{% if errors.username %}
{{ errors.username.0 }}
{% endif %}
{% if errors.email %}
{{ errors.email.0 }}
{% endif %}
Minimum 8 characters.
{% if errors.password %}
{{ errors.password.0 }}
{% endif %}
{% if errors.password_confirm %}
{{ errors.password_confirm.0 }}
{% endif %}

{% endblock %} {% block extra_js %} {% endblock %}