Ignore:
Timestamp:
Nov 17, 2005 3:00:00 AM (19 years ago)
Author:
scdev
Message:

Tons of little updates and bugfixes. CSS updates to templates and core css files. File upload ability to module_maker. Remade Upload interface to use setParam/getParam.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/templates/login_form.ihtml

    r19 r20  
    11<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    22<?php App::printHiddenSession() ?>
    3 <table border="0" cellspacing="0" cellpadding="4">
     3<table>
    44    <tr>
    5         <td class="formlabel" align="right" valign="top"><?php echo _("Username"); ?></td>
    6         <td valign="top"><input type="text" class="forminputtext" size="25" name="username" value="<?php echo oTxt($frm['username']); ?>"></td>
     5        <td class="right"><label for="username"><?php echo _("Username"); ?></label></td>
     6        <td valign="top">
     7            <input type="text" class="medium" size="20" name="username" value="<?php echo oTxt($frm['username']); ?>" />
     8        </td>
    79    </tr>
    810    <tr>
    9         <td class="formlabel" align="right" valign="top"><?php echo _("Password"); ?></td>
    10         <td valign="top"><input type="password" class="forminputtext" size="25" name="password" value="<?php echo oTxt($frm['password']); ?>"></td>
     11        <td class="right"><label for="password"><?php echo _("Password"); ?></label></td>
     12        <td valign="top">
     13            <input type="password" class="medium" size="20" name="password" value="<?php echo oTxt($frm['password']); ?>" />
     14        </td>
    1115    </tr>
    1216    <tr>
    13         <td class="formlabel" align="right" valign="top">&nbsp;</td>
    14         <td valign="top"><br /><input type="submit" class="formsubmitbutton" value="<?php echo _("Login"); ?>"></td>
     17        <td>&nbsp;</td>
     18        <td valign="top"><input type="submit" value="<?php echo _("Login"); ?>" /></td>
    1519    </tr>
    1620</table>
Note: See TracChangeset for help on using the changeset viewer.