source: trunk/services/templates/admin_form.ihtml @ 136

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

Q - Merged branches/2.0singleton into trunk. Completed updating classes to use singleton methods. Implemented tests. Fixed some bugs. Changed some interfaces.

File size: 2.5 KB
RevLine 
[1]1<?php $fv->printErrorMessages(); ?>
2
3<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
[136]4<?php $app->printHiddenSession(); ?>
[20]5<input type="hidden" name="op" value="<?php echo $frm['new_op']; ?>" />
6<input type="hidden" name="admin_id" value="<?php echo $frm['admin_id']; ?>" />
7<input type="hidden" name="old_username" value="<?php echo $frm['old_username']; ?>" />
[1]8
[19]9<table>
[1]10    <tr>
[19]11        <td>&nbsp;</td>
[22]12        <td><?php printSubmitButtons($frm['submit_buttons']); ?></td>
[1]13    </tr>
14    <tr>
[121]15        <td class="sc-right"><label for="username"<?php $fv->err('username', ' class="error"') ?>><?php echo _("Username"); ?></label></td>
[22]16        <td>
[121]17            <input type="text" class="sc-small" size="50" name="username" value="<?php echo oTxt($frm['username']); ?>" />
[1]18        </td>
19    </tr>
20    <tr>
[121]21        <td class="sc-right"><label for="userpass"<?php $fv->err('userpass', ' class="error"') ?>><?php echo _("Password"); ?></label></td>
[22]22        <td>
[121]23            <input type="password" class="sc-small" size="50" name="userpass" value="<?php echo oTxt($frm['userpass']); ?>" />
[1]24        </td>
25    </tr>
26    <tr>
[121]27        <td class="sc-right"><label for="first_name"<?php $fv->err('first_name', ' class="error"') ?>><?php echo _("First name"); ?></label></td>
[22]28        <td>
[121]29            <input type="text" class="sc-small" size="50" name="first_name" value="<?php echo oTxt($frm['first_name']); ?>" />
[1]30        </td>
31    </tr>
32    <tr>
[121]33        <td class="sc-right"><label for="last_name"<?php $fv->err('last_name', ' class="error"') ?>><?php echo _("Last name"); ?></label></td>
[22]34        <td>
[121]35            <input type="text" class="sc-small" size="50" name="last_name" value="<?php echo oTxt($frm['last_name']); ?>" />
[1]36        </td>
37    </tr>
38    <tr>
[121]39        <td class="sc-right"><label for="email"<?php $fv->err('email', ' class="error"') ?>><?php echo _("Email"); ?></label></td>
[22]40        <td>
[121]41            <input type="text" class="sc-medium" size="50" name="email" value="<?php echo oTxt($frm['email']); ?>" />
[1]42        </td>
43    </tr>
44    <tr>
[121]45        <td class="sc-right"><label for="user_type"<?php $fv->err('user_type', ' class="error"') ?>><?php echo _("User type"); ?></label></td>
[22]46        <td>
[121]47            <select name="user_type" class="sc-small">
[19]48            <?php printSetSelectForm('admin_tbl', 'user_type', $frm['user_type'], true); ?>
[1]49            </select>
50        </td>
51    </tr>
52    <tr>
[19]53        <td>&nbsp;</td>
[22]54        <td><?php printSubmitButtons($frm['submit_buttons']); ?></td>
[1]55    </tr>
56</table>
57</form>
Note: See TracBrowser for help on using the repository browser.