mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
11 lines
244 B
HTML
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 %}
|