[phpwebapp-commits] CVS: top10/templates/edituser edituser.html,1.1.2.1,1.1.2.2
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-22 14:09:39
|
Update of /cvsroot/phpwebapp/top10/templates/edituser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17879/templates/edituser Modified Files: Tag: maisp edituser.html Log Message: Index: edituser.html =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/edituser/Attic/edituser.html,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** edituser.html 2 Feb 2004 13:54:58 -0000 1.1.2.1 --- edituser.html 22 Jul 2004 14:09:29 -0000 1.1.2.2 *************** *** 1,9 **** ! <WebBox ID="edituser"> ! <If condition="'{{mode}}'=='add'"> <h4>Add New User:</h4> ! </If> ! <If condition="'{{mode}}'=='edit'"> <h4>Edit User Data:</h4> ! </If> <table width="100%" cellspacing="1" cellpadding="2" bgcolor="#dddddd"> <form name="edituser" onsubmit="return false;"> --- 1,9 ---- ! <webbox id="edituser"> ! <if condition="'{{mode}}'=='add'"> <h4>Add New User:</h4> ! </if> ! <if condition="'{{mode}}'=='edit'"> <h4>Edit User Data:</h4> ! </if> <table width="100%" cellspacing="1" cellpadding="2" bgcolor="#dddddd"> <form name="edituser" onsubmit="return false;"> *************** *** 18,28 **** <tr> <td bgcolor="white"> ! <If condition="'{{mode}}'=='add'"> <input type="text" name="username" value="" class="textbox" size="10" onfocus="select()" /> ! </If> ! <If condition="'{{mode}}'=='edit'"> {{username}} ! </If> </td> <td bgcolor="white"> --- 18,28 ---- <tr> <td bgcolor="white"> ! <if condition="'{{mode}}'=='add'"> <input type="text" name="username" value="" class="textbox" size="10" onfocus="select()" /> ! </if> ! <if condition="'{{mode}}'=='edit'"> {{username}} ! </if> </td> <td bgcolor="white"> *************** *** 43,55 **** </td> <td bgcolor="white" align="center"> ! <If condition="'{{mode}}'=='add'"> <a class="button" href="javascript:adduser()">Add</a> ! </If> ! <If condition="'{{mode}}'=='edit'"> <a class="button" href="javascript:saveuser()">Save</a> ! </If> </td> </tr> </form> </table> ! </WebBox> --- 43,55 ---- </td> <td bgcolor="white" align="center"> ! <if condition="'{{mode}}'=='add'"> <a class="button" href="javascript:adduser()">Add</a> ! </if> ! <if condition="'{{mode}}'=='edit'"> <a class="button" href="javascript:saveuser()">Save</a> ! </if> </td> </tr> </form> </table> ! </webbox> |