regluit/frontend/templates/registration/password_reset_confirm.html

14 lines
402 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Confirm password reset{% endblock %}
{% block doccontent %}
<div id="registration">
Enter your new password below to reset your password:
<form method="post" action="">{% csrf_token %}
<table>
{{ form.as_table }}
<tr><td></ td><td><input type="submit" value="Set password" /></td></tr>
</table>
</form>
</div>
{% endblock %}