takahe/templates/auth/login.html
2022-11-17 17:33:09 -07:00

18 lines
438 B
HTML

{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Login</legend>
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
<div class="buttons">
<button>Login</button>
</div>
</form>
{% endblock %}