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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<form method="post" action="inscription2.html" name="inscription">
<p><img src="style/images/puce.gif" alt="" width="30" height="10"/> <b>Vos identifiants:</b></p>
<table cellspacing="0" cellpadding="5" border="0" width="700">
<tr>
<td width="250"> Adresse email * : </td>
<td width="450"> <input type="text" style="width:100%;" name="mail" value="<?php if(isset($_POST['mail'])) echo($_POST['mail']);?>" /></td>
</tr>
<tr>
<td> Mot de passe * : </td>
<td> <input type="password" style="width:100%;" name="password" value="" /></td>
</tr>
<tr>
<td> Confirmer mot de passe * : </td>
<td> <input type="password" style="width:100%;" name="confirmPassword" value="" /></td>
</tr>
</table>
<hr/>
<p><img src="style/images/puce.gif" alt="" width="30" height="10"/> <b>Vos coordonnées:</b></p>
<table cellspacing="0" cellpadding="5" border="0" width="700">
<tr>
<td width="250"> Nom * : </td>
<td width="450"> <input type="text" style="width:100%;" name="nom" value="<?php if(isset($_POST['nom'])) echo($_POST['nom']);?>" /></td>
</tr>
<tr>
<td> Prenom * : </td>
<td> <input type="text" style="width:100%;" name="prenom" value="<?php if(isset($_POST['prenom'])) echo($_POST['prenom']);?>" /></td>
</tr>
<tr>
<td> Adresse * : </td>
<td> <textarea name="adresse" cols="61" rows="5"><?php if(isset($_POST['adresse'])) echo($_POST['adresse']);?></textarea></td>
</tr>
<tr>
<td> Code Postal * : </td>
<td> <input type="text" style="width:100%;" name="code_postal" value="<?php if(isset($_POST['code_postal'])) echo($_POST['code_postal']);?>" /></td>
</tr>
<tr>
<td> Ville * : </td>
<td> <input type="text" style="width:100%;" name="ville" value="<?php if(isset($_POST['ville'])) echo($_POST['ville']);?>" /></td>
</tr>
<tr>
<td> Téléphone : </td>
<td> <input type="text" style="width:100%;" name="telephone" value="<?php if(isset($_POST['telephone'])) echo($_POST['telephone']);?>" /></td>
</tr>
</table>
<hr/>
<p><img src="style/images/puce.gif" alt="" width="30" height="10"/> <b>Adresse de livraison:</b></p>
<table cellspacing="0" cellpadding="5" border="0" width="700">
<tr>
<td width="250"> Nom * : </td>
<td width="450"> <input type="text" style="width:100%;" name="nom_livraison" value="<?php if(isset($_POST['nom_livraison'])) echo($_POST['nom_livraison']);?>" /></td>
</tr>
<tr>
<td> Prénom * : </td>
<td> <input type="text" style="width:100%;" name="prenom_livraison" value="<?php if(isset($_POST['prenom_livraison'])) echo($_POST['prenom_livraison']);?>" /></td>
</tr>
<tr>
<td> Adresse * : </td>
<td> <textarea name="adresse_livraison" cols="61" rows="5"><?php if(isset($_POST['adresse_livraison'])) echo($_POST['adresse_livraison']);?></textarea></td>
</tr>
<tr>
<td> Code postal * : </td>
<td> <input type="text" style="width:100%;" name="code_postal_livraison" value="<?php if(isset($_POST['code_postal_livraison'])) echo($_POST['code_postal_livraison']);?>" /></td>
</tr>
<tr>
<td> Ville * : </td>
<td> <input type="text" style="width:100%;" name="ville_livraison" value="<?php if(isset($_POST['ville_livraison'])) echo($_POST['ville_livraison']);?>" /></td>
</tr>
<tr>
<td> Département *: </td>
<td><select type="select" name="departement">
<option></option>
<option>test</option>
</select></td>
</tr>
</table>
<hr/>
<input type="checkbox" name="newsletter"/> Je désire recevoir toutes les offres concernant votre société<br/>
<hr/>
<p>
<img src="images/captcha/captcha.php" alt="" /><br/>
<input type="text" size="6" value="" id="captcha" name="codeVerif" />
<font size="2"><i>Veuillez saisir le code de sécurité</i></font>
</p><i>* Champs obligatoire</i>
<br/><br/>
<input type="button" value="S'inscrire" onclick="javascript:soumettre();"/>
</form> |