|
From: Markus P. <mar...@us...> - 2005-04-19 17:19:01
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12751/templates/subSilver Modified Files: mx_login.tpl Log Message: Fixed some named array with non-quoted indexes and code layout. Added use of new mx_request_vars class. Index: mx_login.tpl =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/templates/subSilver/mx_login.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mx_login.tpl 6 Mar 2005 01:10:16 -0000 1.5 --- mx_login.tpl 19 Apr 2005 17:18:48 -0000 1.6 *************** *** 1,14 **** ! <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="0" border="0" class="forumline" > ! <tr> ! <td class="row1" valign="middle" height="28"><span class="gensmall"> ! <form action="{S_LOGIN_ACTION}" method="post"> ! {L_USERNAME}:<br /><input class="post" type="text" name="username" size="10" /><br /> ! {L_PASSWORD}:<br /><input class="post" type="password" name="password" size="10" /><br /> ! <input class="text" type="checkbox" name="autologin" value="ON" /> {L_AUTO_LOGIN}<br /> ! <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /> ! </form> ! </td> ! </tr> </table> - - \ No newline at end of file --- 1,12 ---- ! <table width="{BLOCK_SIZE}" cellpadding="4" cellspacing="0" border="0" class="forumline"> ! <tr> ! <td class="row1" valign="middle" height="28"><span class="gensmall"> ! <form action="{S_LOGIN_ACTION}" method="post"> ! {L_USERNAME}:<br /><input class="post" type="text" name="username" size="10" /><br /> ! {L_PASSWORD}:<br /><input class="post" type="password" name="password" size="10" /><br /> ! <input type="checkbox" class="post" name="autologin" value="ON" /> {L_AUTO_LOGIN}<br /> ! <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /> ! </form> ! </td> ! </tr> </table> |