11 lines
336 B
HTML
11 lines
336 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Confirm password reset{% endblock %}
|
|
{% block doccontent %}
|
|
Enter your new password below to reset your password.<br /><br />
|
|
|
|
<form method="post" action="#">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Set password" />
|
|
</form>
|
|
{% endblock %}
|