source: trunk/services/templates/passwd.ihtml @ 19

Last change on this file since 19 was 19, checked in by scdev, 19 years ago

Rebuilt the services/admins.php script and templates. Fixes since v2 conversion. Lots of bugs and more to come!

File size: 1.3 KB
Line 
1<?php $fv->printErrorMessages(); ?>
2
3<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
4<?php App::printHiddenSession() ?>
5<input type="hidden" name="op" value="update_password">
6<table border="0" cellspacing="0" cellpadding="4">
7    <tr>
8        <td class="formlabel" align="right" valign="top"<?php $fv->err('oldpassword', ' class="error"') ?>><?php echo _("Old password"); ?></td>
9        <td valign="top"><input type="password" class="forminputtext" size="25" name="oldpassword" /></td>
10    </tr>
11    <tr>
12        <td class="formlabel" align="right" valign="top"<?php $fv->err('newpassword', ' class="error"') ?>><?php echo _("New password"); ?></td>
13        <td valign="top"><input type="password" class="forminputtext" size="25" name="newpassword" /></td>
14    </tr>
15    <tr>
16        <td class="formlabel" align="right" valign="top"<?php $fv->err('newpassword2', ' class="error"') ?>><?php echo _("New password again"); ?></td>
17        <td valign="top"><input type="password" class="forminputtext" size="25" name="newpassword2" /></td>
18    </tr>
19    <tr>
20        <td class="formlabel" align="right" valign="top">&nbsp;</td>
21        <td valign="top"><br /><input type="submit" class="formsubmitbutton" value="<?php echo _("Change password"); ?>" /></td>
22    </tr>
23</table>
24</form>
Note: See TracBrowser for help on using the repository browser.