{% extends "base.html" %} {% block title %}Login{% endblock %} {% block content %}
{{ form.csrf_token }}
{{ form.username.label }}
{{ form.username }}
{{ form.login_password.label }}
{{ form.login_password }}
{% if errors %}
{{ errors }}
{% endif %}
Or alternatively, add a new account.
{% endblock content %}