NDOJ/templates/registration/password_reset.html
2020-01-21 15:35:58 +09:00

9 lines
No EOL
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 %}