blob: deebb7c96fa344a73677ac87570bb2b07d447ef1 (
plain)
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
|
<h1>{tr}Change password enforced{/tr}</h1>
<form method="post" action="{$smarty.const.USERS_PKG_URL}change_password.php">
<input type="hidden" name="login" value="{$userInfo.login}" />
{if $userInfo.provpass}
<input type="hidden" name="provpass" value="{$userInfo.provpass|escape}" />
{/if}
<table class="panel">
<tr>
<td>{tr}User{/tr}:</td>
<td><b>{$userInfo.login}</b></td>
</tr>
{if !$userInfo.provpass}
<tr>
<td>{tr}Old password{/tr}:</td>
<td><input type="password" name="oldpass" /></td>
</tr>
{/if}
<tr>
<td>{tr}New password{/tr}:</td>
<td><input type="password" name="pass" /></td>
</tr>
<tr>
<td>{tr}Again please{/tr}:</td>
<td><input type="password" name="pass2" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="change" value="{tr}change{/tr}" /></td>
</tr>
</table>
</form>
|