takahe/templates/auth/login.html

20 lines
536 B
HTML
Raw Normal View History

2022-11-05 13:17:27 -07:00
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
2022-11-13 15:14:38 -08:00
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Login</legend>
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
2022-11-13 15:14:38 -08:00
<div class="buttons">
<a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
2022-11-13 15:14:38 -08:00
<button>Login</button>
</div>
</form>
2022-11-05 13:17:27 -07:00
{% endblock %}