This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/auth/login.html
2022-11-05 14:17:27 -06:00

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