20 lines
536 B
HTML
20 lines
536 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Login</legend>
|
|
{% for field in form %}
|
|
{% include "forms/_field.html" %}
|
|
{% endfor %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{% url "trigger_reset" %}" class="secondary button left">Forgot Password</a>
|
|
<button>Login</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|