{% extends 'squid/auth/localdb.html' %} {% block auth_localdb_users %}class="active"{%endblock%} {% block tab_content %}
{% if form.non_field_errors %}
ERROR: {% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.user}} {% if form.user.errors %} {{form.user.errors|striptags}} {% else %} Specify the name of the new user. The specified name can only be alpha-numeric including dot. User name must be lower case. {%endif%}
{{form.password}} {% if form.password.errors %} {{form.password.errors|striptags}} {% else %} Specify the password to use the proxy. Specified password cannot be more than 32 characters. {%endif%}
{{form.comment}} {% if form.comment.errors %} {{form.comment.errors|striptags}} {% else %} Specify comment for your own use. {%endif%}
{% endblock %}