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