{% extends 'base.html' %} {% load i18n %} {% block title %}Create User{% endblock %} {% block page_header %} {% include "horizon/common/_page_header.html" with title=_("Create User") %} {% endblock page_header %} {% block main %} {% csrf_token %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description" %}:

{% trans "From here you can create a user " %}

{% trans "Your user name must be combination of letter,number ,'@', '.' and '_' " %}

{% trans "Your password must be at least 8 characters long, and contain at least one number, one upper case letter, one lower case letter, and one of the special characters !@#$%^&*(){}[]<>?" %}

{% trans 'Cancel' %}
{% endblock %} {% block js %} {{ block.super }} {% endblock %}