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
Andrew Godwin 34b24a0dcb More UI!
2022-11-13 16:15:14 -07:00

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