<html:form action="/ClientAddSubmit" method="POST">
<table align="center">
<tr>
<td>Mme<html:radio property="titre" value=""/>
M<html:radio property="titre" value=""/>
</td>
</tr>
<tr>
<td>Nom:</td>
<td><html:text property="nom"/>
<html:errors property="nom"/></td>
</tr>
<tr>
<td>Prenom:</td>
<td><html:text property="prenom"/>
<html:errors property="prenom"/></td>
</tr>
<tr>
<td>Login:</td>
<td><html:text property="login"/>
<html:errors property="login"/></td>
</tr>
<tr>
<td>MotDePasse:</td>
<td><html:password property="pwd"/>
<html:errors property="pwd"/></td>
</tr>
<tr>
<td>Confirmation:</td>
<td><html:password property="confpwd"/>
<html:errors property="confpwd"/></td>
</tr>
<tr>
<td>Adresse:</td>
<td><html:text property="adresse"/>
<html:errors property="adresse"/></td>
</tr>
<tr>
<td>Ville:</td>
<td><html:text property="ville"/>
<html:errors property="ville"/></td>
</tr>
<tr>
<td>CodePostale:</td>
<td><html:text property="codepostale"/>
<html:errors property="CodePostale"/></td>
</tr>
<tr>
<td>Tel:</td>
<td><html:text property="tel"/>
<html:errors property="tel"/></td>
</tr>
<tr>
<td>Mail:</td>
<td><html:text property="mail"/>
<html:errors property="mail"/></td>
</tr>
<tr align="center">
<td></td><td>
<html:submit><bean:message key="button.ajout" /></html:submit>
<html:reset property="annuler"/>
<html:button property="back" value="Annuler" onclick="history.back();"/></td>
</tr>
</table>
</html:form>
Partager