takahe/templates/auth/login.html
2022-11-05 14:17:27 -06:00

11 lines
244 B
HTML

{% 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 %}