9 lines
296 B
HTML
9 lines
296 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block body %}
|
||
|
<form action="" method="post" class="form-area">{% csrf_token %}
|
||
|
<table border="0">{{ form.as_table() }}</table>
|
||
|
<hr>
|
||
|
<button style="float:right;" type="submit">{{ _('Send Reset Email') }}</button>
|
||
|
</form>
|
||
|
{% endblock %}
|