1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<html:form action="userEdit">
<table cellspacing="1" cellpadding="0" border="0" align="center" width="550px">
<thead>
<tr class="title">
<td colspan="2" align="center" height="21">Modification un utilisateur</td>
</tr>
</thead>
<tbody>
<tr>
<td>password</td>
<td><html:text property="password" /></td>
</tr>
<tr>
<td>profil</td>
<td><html:text property="profil" /></td>
</tr>
<tr>
<td width="105">
<html:hidden property="do" value="saveUser" />
<html:hidden property="login" />
</td>
<td width="204">
<html:button property="back" onclick="history.back();">Retour</html:button>
<html:submit>Modifier l'utilisateur</html:submit> </td>
</tr>
</tbody>
</table>
</html:form> |