228 |
kaklik |
1 |
<h1><?php echo $sg->translator->_g("Change Password") ?></h1> |
|
|
2 |
<p><?php echo $sg->translator->_g("Please choose a new password between 6 and 16 characters in length.") ?></p> |
|
|
3 |
|
|
|
4 |
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post"> |
|
|
5 |
<input type="hidden" name="action" value="savepass" /> |
|
|
6 |
<input type="hidden" name="sgUsername" value="<?php echo $sg->user->username ?>" /> |
|
|
7 |
<table> |
|
|
8 |
<tr> |
|
|
9 |
<td><?php echo $sg->translator->_g("Current password:") ?></td> |
|
|
10 |
<td><input type="password" name="sgOldPass" size="23" /></td> |
|
|
11 |
</tr> |
|
|
12 |
<tr> |
|
|
13 |
<td><?php echo $sg->translator->_g("New password:") ?></td> |
|
|
14 |
<td><input type="password" name="sgNewPass1" size="23" /></td> |
|
|
15 |
</tr> |
|
|
16 |
<tr> |
|
|
17 |
<td><?php echo $sg->translator->_g("Confirm password:") ?></td> |
|
|
18 |
<td><input type="password" name="sgNewPass2" size="23" /></td> |
|
|
19 |
</tr> |
|
|
20 |
<tr> |
|
|
21 |
<td></td> |
|
|
22 |
<td><input type="submit" class="button" value="<?php /*"*/ echo $sg->translator->_g("Save Changes") ?>" /></td> |
|
|
23 |
</tr> |
|
|
24 |
</table> |
|
|
25 |
</form> |