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

Last change on this file since 235 was 235, checked in by quinn, 17 years ago

Q - fixed some fv->err() usage bugs, increased resolution of textColor(), improved formatting of some Utilities.inc.php functions.

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