summaryrefslogtreecommitdiffstats
path: root/templates/auth/login.html
blob: f8e1c9d4e02c915206db76b4e2383e5ef0112270 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% load crispy_forms_tags %}

{% block title %}Login{% endblock %}

{% block content %}
    <section class="modal identities">
        <h1>Login</h1>
        {% crispy form form.helper %}
    </section>
{% endblock %}