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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| <div id="message" style="width: 620px; height: 36px;"></div>
<form id="compte" name="compte" method="post" action="compte.php">
<table id="compte" name="compte" method="post" action="compte.php" style="width: 120%;margin-left:20px;" text-align="center">
<tr>
<td style="width: 350px; height: 5px;"><strong>Nom et prénom de l'adhérent</strong></td>
<td class="input" style="height: 5px">
<input type="text" name="nomprenom" id="nomprenom" maxlength="50" class="input_form" value='<?php echo $le_nomprenom; ?>' onClick="saisie('Nom et prénom de l'adhérent',this.id)"
onMouseOut="retablir('Nom et prénom de l'adhérent',this.id)" onblur="mev('Nom et prénom de l adhérent',this.id)" onChange="javascript:this.value=this.value.toUpperCase();etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>Adresse</strong></td>
<td class="input" style="height: 5px">
<input type="text" name="adresse" id="adresse" maxlength="100" class="input_form" value='<?php echo $l_adresse; ?>' onClick="saisie('Votre adresse',this.id)"
onMouseOut="retablir('Votre adresse',this.id)" onblur="mev('Votre adresse',this.id)" onChange="etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>Code postal</strong></td>
<td class="input" style="height: 5px">
<input type="text" name="codepostal" id="codepostal" maxlength="5" class="input_form" value='<?php echo $le_codepostal; ?>' onClick="saisie('Votre code postal',this.id)"
onMouseOut="retablir('Votre code postal',this.id)" onblur="mev('Votre code postal',this.id)" onChange="etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>Ville<strong></td>
<td class="input" style="height: 5px">
<input type="text" name="ville" id="ville" maxlength="50" class="input_form" value='<?php echo $la_ville; ?>' onClick="saisie('Votre ville',this.id)"
onMouseOut="retablir('Votre ville',this.id)" onblur="mev('Votre ville',this.id)" onChange="javascript:this.value=this.value.toUpperCase(); etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>Date naissance (Ex: 28/01/2000)</strong></td>
<td class="input" style="height: 5px">
<input type="text" name="date_n" id="date_n" maxlength="10" class="input_form" value='<?php echo $la_naissance; ?>' onClick="saisie('date de naissance',this.id)"
onMouseOut="retablir('date de naissance',this.id)" onblur="mev('date de naissance',this.id)" onChange="etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>L'Email</strong></td>
<td class="input" style="height: 5px">
<input type="text" name="mail_inscr" id="mail" maxlength="50" class="input_form" value='<?php echo $le_mail; ?>' onClick="saisie('Votre mail',this.id)"
onMouseOut="retablir('Votre mail',this.id)" onblur="mev('Votre mail',this.id)" onChange="etat();" style="height: 25px" />
</td>
</tr>
<tr>
<td style="width: 350px; height: 5px;"><strong>Nouveau mot de passe si besoin</strong></td>
<td class="input" style="height: 5px">
<input type="password" name="mp_inscr" id="mp_inscr" maxlength="10" class="input_form" value="<?php echo $le_mp; ?>" onClick="saisie('Nouveau MP',this.id)" onChange="etat();"
onMouseOut="retablir('Nouveau MP',this.id)" onblur="mev('Nouveaur MP',this.id)" style="height: 25px" />
</td>
</tr>
</table> |
Partager