mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 14:22:16 +00:00
13 lines
344 B
HTML
13 lines
344 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Confirm password reset{% endblock %}
|
|
{% block content %}
|
|
<p>Enter your new password below to reset your password:</p>
|
|
<form method="post" action="">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type='submit' value="Set password" />
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|