source: trunk/services/templates/login_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: 773 bytes
Line 
1<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
2<?php $app->printHiddenSession() ?>
3<table>
4    <tr>
5        <td class="sc-right"><label for="username"><?php echo _("Username"); ?></label></td>
6        <td>
7            <input type="text" class="sc-small" size="20" name="username" value="<?php echo oTxt($frm['username']); ?>" />
8        </td>
9    </tr>
10    <tr>
11        <td class="sc-right"><label for="password"><?php echo _("Password"); ?></label></td>
12        <td>
13            <input type="password" class="sc-small" size="20" name="password" value="<?php echo oTxt($frm['password']); ?>" />
14        </td>
15    </tr>
16    <tr>
17        <td>&nbsp;</td>
18        <td><input type="submit" value="<?php echo _("Login"); ?>" /></td>
19    </tr>
20</table>
21</form>
Note: See TracBrowser for help on using the repository browser.