{% include 'head.html' %} {% include 'navbar.html' %}
{{ form.csrf_token }} {% for f in form %} {% if f.name != 'csrf_token' %}
{{ f.label }} {{ f }}
{% endif %} {% endfor %}
    {% for field, errors in form.errors.items() %}
  • {{ form[field].label }}: {{ ', '.join(errors) }}
  • {% endfor %}

Click here if you need to register.

{% include 'footer.html' %} {% include 'scripts.html' %}