{% extends "base.html" %} {% block title %}Einloggen{% endblock %} {% block nav_login_class %}is-active{% endblock %} {% block content %}

Einloggen

{% if user.is_authenticated %} Du bist doch schon eingeloggt!?
Meinten sie: ausloggen ? {% else %} {% if form.non_field_errors %}
Nope!
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% if form.username.errors %} {% endif %}

{{form.username.errors.as_text}}

{% if form.password.errors %} {% endif %}

{{form.password.errors.as_text}}


Och Mist, ich hab mein Passwort vergessen ... {% endif %}
{% endblock %}