{% extends 'base.html' %} {% block title %} Login Page {% endblock %} {% block content %}

Login

{% csrf_token %} {% include 'components/input.html' with id='username' name='username' label='Username' required='true' %} {% include 'components/input.html' with id='password' name='password' label='Password' required='true' type='password' %} {% if messages %} {% for message in messages %}

* {{ message }}

{% endfor %} {% endif %}

Don't have an account? Register here

{% include 'components/button.html' with text='Login' type='submit' %}
{% endblock %}