mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
21 lines
645 B
HTML
21 lines
645 B
HTML
{% extends "base_plain.html" %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Login</legend>
|
|
{{ form.non_field_errors }}
|
|
{% for field in form %}
|
|
{% include "forms/_field.html" %}
|
|
{% endfor %}
|
|
</fieldset>
|
|
<input type="hidden" name="next" value="{{ next }}" />
|
|
<div class="buttons">
|
|
<a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
|
|
<button>Login</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|