takahe/templates/auth/login.html

22 wiersze
645 B
HTML
Czysty Zwykły widok Historia

{% extends "base_plain.html" %}
2022-11-05 20:17:27 +00:00
{% block title %}Login{% endblock %}
{% 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 %}