{% extends 'base.html' %} {% load custom_tags_and_filters %} {% load static %} {% block title %}New account{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

New account

{% if form.non_field_errors %}
Oops! Something went wrong. The project was not created because:
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{{ form.name.errors|striptags }}
{% if form.fields.type.choices.queryset %}
{% endif %}
{{ form.start_date.errors|striptags }}
{% button type="save" value="Create new account" %}
{% endblock %}