{% extends "admin_base.html" %} {% block title %}Add New User{% endblock %} {% block content %}

Create New Account


{% if get.error is defined and get.error != 1 %}
{% if get.error == 'u_fail' %} The username you entered does not meet the requirements. Must be at least 4 characters, and no more than 35. Username can only contain a-zA-Z0-9_- {% elseif get.error == 'e_fail' %} The email you entered is invalid. {% elseif get.error == 'p_fail' %} The passwords you entered did not match or were not at least 8 characters. {% elseif get.error == 'a_fail' %} Account with that username or email already exists in the system. {% else %} Undefined error occured. {% endif %}
{% endif %}
{% endblock %} {% block javascript %} {% endblock %}