1
<html xmlns="http://www.w3.org/1999/xhtml"
2
xmlns:py="http://genshi.edgewall.org/">
4
<title>Reset password - ${user.nick}</title>
7
<h1>Reset password for ${user.nick}</h1>
8
<div id="ivle_padding">
10
This page lets administrators reset any user's password, without
11
knowledge of that password. Be very careful.
13
<p py:if="not user.passhash">
14
<strong>Warning:</strong> This user currently has no IVLE password
15
set. This probably means that their password is checked against
16
another password database. Setting a new one will override any
19
<form class="verticalform" action="" method="post">
21
<label for="field_new_password">New password:</label>
22
<input type="password" name="new_password" id="field_new_password" size="40" />
25
<label for="field_new_password_again">New password (again):</label>
26
<input type="password" name="new_password_again" id="field_new_password_again" size="40" />
29
<p py:if="error" py:content="error" />
30
<p><input type="submit" value="Reset password" /></p>