takahe/templates/auth/login.html

21 wiersze
599 B
HTML
Czysty Zwykły widok Historia

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
2022-11-13 23:14:38 +00:00
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Login</legend>
{% 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 %}