source: trunk/services/templates/login_form.ihtml @ 349

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

Adding class=sc-form-row to <tr> of old templates.

File size: 798 bytes
RevLine 
[295]1<form method="post" action="<?php echo oTxt($_SERVER['PHP_SELF']); ?>" class="sc-form">
[136]2<?php $app->printHiddenSession() ?>
[20]3<table>
[296]4    <tr class="sc-form-row">
[121]5        <td class="sc-right"><label for="username"><?php echo _("Username"); ?></label></td>
[22]6        <td>
[121]7            <input type="text" class="sc-small" size="20" name="username" value="<?php echo oTxt($frm['username']); ?>" />
[20]8        </td>
[1]9    </tr>
[296]10    <tr class="sc-form-row">
[121]11        <td class="sc-right"><label for="password"><?php echo _("Password"); ?></label></td>
[22]12        <td>
[291]13            <input type="password" class="sc-small" size="20" name="password" value="" />
[20]14        </td>
[1]15    </tr>
16    <tr>
[20]17        <td>&nbsp;</td>
[22]18        <td><input type="submit" value="<?php echo _("Login"); ?>" /></td>
[1]19    </tr>
20</table>
21</form>
Note: See TracBrowser for help on using the repository browser.