2018-10-10 16:07:22 +00:00
|
|
|
<title> Changing the password for {{user}} </title>
|
|
|
|
|
|
|
|
<h2> Changing the password for {{user}} </h2>
|
|
|
|
<br><br>
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'index' %} method="get">
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="submit" value="Back to indexpage">
|
|
|
|
</form>
|
|
|
|
<br><br>
|
|
|
|
To change the password for {{user}}, please supply
|
2018-10-14 15:48:11 +00:00
|
|
|
<form action={% url 'change_password' %} method="post">
|
2018-10-10 16:07:22 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
<br>The old password:<br>
|
|
|
|
<input type="password" name="oldpassword" id="oldpassword">
|
2018-10-23 17:41:49 +00:00
|
|
|
<br><br>The new password (at least 8 characters):<br>
|
2018-10-10 16:07:22 +00:00
|
|
|
<input type="password" name="password1" id="password1">
|
|
|
|
<br>Please repeat the new Password:<br>
|
|
|
|
<input type="password" name="password2" id="password2">
|
|
|
|
<br><br>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|