{% extends "index.html" %} {% block styles %} {% endblock %} {% block title %}Login{% endblock %} {% block navbar %} Home{% comment %} | Login{% endcomment %} {% endblock %} {% block form %}
Connection to VisionDB
{% csrf_token %}
{{ form.username }}
{{ form.password }}
Forgot your password ? Just fill your username and click on the "Reset" button. You'll receive an email describing the procedure.
{% if form.errors %}
{% comment %}
Your username and password didn't match. Please try again.
{% endcomment %}
    {% for field, errors in form.errors.items %} {% if field == "__all__" %} {% for error in errors %}
  • {{error}}
  • {% endfor %} {% else %}
  • {{field|capfirst}} :
      {% for error in errors %}
    • {{error}}
    • {% endfor %}
  • {% endif %} {% endfor %}
{% endif %}
{% endblock %}