{% extends "base.app.html" %} {% block content-title %} New User{% endblock%} {% block content %}
{% if errors %}
{% if 'password' or 'username' in errors %}
Username and password are required.
{% endif %} {% if 'server' in errors %}
{{errors.server}}
{% endif %}
{% endif %}
{% csrf_token %}
{% for bounded in form %}
{% endfor %}
{% endblock%} {% block extrajs %} {% endblock %}