15 lines
454 B
HTML
15 lines
454 B
HTML
|
<title> Set new password for {{user}} </title>
|
||
|
|
||
|
<h2> Please set new password for {{user}} </h2>
|
||
|
<br><br>
|
||
|
<form action={% url 'reset' %} method="post">
|
||
|
{% csrf_token %}
|
||
|
New Password:<br>
|
||
|
<input type="password" name="password1" id="password1">
|
||
|
<br>Please confirm new password:<br>
|
||
|
<input type="password" name="password2" id="password2">
|
||
|
<br>
|
||
|
<input type="hidden" name="user" id="user" value="{{user}}">
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|