{% load static %} {% include "partials/main.html" %} {% include "partials/title-meta.html" with title="Register" %} {% include "partials/head-css.html" %}

Free Sign Up

Don't have an account? Create your account, it takes less than a minute

{% csrf_token %} {% if form.errors %}
{% for field in form %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endfor %} {% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.username }}
{{ form.email }}
{{ form.password1 }}
{{ form.password2 }}
{{ form.role }}

Create account using

Already have an account? Log In

{% include "partials/footer-script.html" %} {% block extra_js %} {% endblock extra_js %}