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
|
<form method="post" action="" name="formulaire">
<div class="inputs" align="center">
<input type="text" name="pseudo" value="pseudo *" maxlength="15" onclick="this.value=''" />
<input type="text" name="mdp" value="Pass *" maxlength="15" onclick="this.value=''" />
<input type="text" name="mdp_" value="Retapper pass *" maxlength="15" onclick="this.value=''" />
<input type="text" name="naiss" value="né(e) le dd/mm/yyyy *" maxlength="10" onclick="this.value=''" />
<input type="text" name="mail" value="mail *" onclick="this.value=''" />
<input type="text" name="mail_" value="Retapper mail *" onclick="this.value=''" />
<input type="text" name="ville" value="ville *" onclick="this.value=''" />
<input type="text" name="adr" value="adresse *" onclick="this.value=''" />
<input type="text" name="cp" value="code postal *" maxlength="5" onclick="this.value=''" />
<input type="text" name="fixe" value="tel fixe" maxlength="10" onclick="this.value='02'" />
<input type="text" name="port" value="tel portable" maxlength="10" onclick="this.value='06'" />
<select name="sexe">
<option value="homme">Homme</option>
<option value="femme">Femme</option>
</select>
</div>
<div align="center">
<p align="center">Présentation :</p>
<?php include 'com/editeur/editeur.php'; ?>
<p>3 000 caractères maximum :</p>
<textarea name="saisie" id="text" cols="50" rows="10" onKeyPress="CaracMax(this, 3000) ;"></textarea><br><br>
</div>
<div align="center">
<input type="reset" value="Remettre à zéro" /> <input type="button" value="Apperçu" onclick="window.open('com/inscription/apercu.php')" /> <input type="submit" name="enreg" value="s' enregistrer" />
</div>
</form> |
Partager