takahe/templates/auth/login.html
Andrew Godwin 34b24a0dcb More UI!
2022-11-13 16:15:14 -07:00

18 lines
420 B
HTML

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