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
|
<form method="post" action="Fonctions.php">
Nom Société : <br />
<input type="text" name="nom" size="50" value="Votre Nom Societe" onClick="if(this.value == 'Votre Nom Société'){this.value='';}" onBlur="if(!this.value){this.value='Votre Nom Société';}" /> <br />
Adresse Société : <br />
<input type="text" name="adresse" size="50" value="Adresse Societe" onClick="if(this.value == 'Adresse société'){this.value='';}" onBlur="if(!this.value){this.value='Adresse Société';}" /> <br />
téléphone Société : <br />
<input type="text" name="telephone" size="50" value="Téléphone Societe" onClick="if(this.value == 'Téléphone Société'){this.value='';}" onBlur="if(!this.value){this.value='Téléphone Société';}" /> <br />
</form>
</td>
<td><form method="post" action="Verifmail.php", Fonctions.php" >
Adresse Mail : <br />
<input type="text" name="email" size="35" value="Votre adresse E-Mail" onClick="if(this.value == 'Votre adresse E-Mail'){this.value='';}" onBlur="if(!this.value){this.value='Votre adresse E-Mail';}" />
<br />
<input type="hidden" name="action" value="inscription" />
<input type="submit" value="Enregistrement" />
</form></td> |