takahe/templates/auth/login.html
2022-11-18 11:28:16 -07:00

20 lines
536 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">
<a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
<button>Login</button>
</div>
</form>
{% endblock %}