takahe/templates/auth/login.html

24 lines
687 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block body_class %}no-sidebar{% endblock %}
2022-11-05 20:17:27 +00:00
{% block content %}
2022-11-13 23:14:38 +00:00
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Login</legend>
{{ form.non_field_errors }}
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
2022-12-11 04:03:14 +00:00
<input type="hidden" name="next" value="{{ next }}" />
2022-11-13 23:14:38 +00:00
<div class="buttons">
<a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
2022-11-13 23:14:38 +00:00
<button>Login</button>
</div>
</form>
2022-11-05 20:17:27 +00:00
{% endblock %}