{% extends 'auth/base.html' %} {% load static %} {% block title %}Register - {{ block.super }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Adtlas Logo

Create Account

Join Adtlas DAI Management System

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
{% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{% if form.username.errors %}
{{ form.username.errors.0 }}
{% endif %}
Username must be 3-30 characters long and can contain letters, numbers, dots, hyphens, and underscores.
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{% if form.password1.errors %}
{{ form.password1.errors.0 }}
{% endif %}
Password must be at least 8 characters with uppercase, lowercase, number, and special character.
{% if form.password2.errors %}
{{ form.password2.errors.0 }}
{% endif %}
or
Your information is secure and will never be shared
{% endblock %} {% block extra_js %} {% endblock %}