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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<html>
<head>
<script language="javascript">
function verif()
{
if(document.mail.societe.value=="")
{
alert("vous devez saisir le nom de votre société!");
return false;
}
if(document.mail.nom.value=="")
{
alert("vous devez saisir votre nom!");
return false;
}
if(document.mail.tel.value=="")
{
alert("vous devez saisir votre numéro de téléphone!");
return false;
}
}
function sendMail(form)
{
if(verif())
{
if(form.submit())
{
alert("votre mail n'as pu être envoyer pour une raison de connexion!");
afficherForm();
}
else
alert("votre mail n'as pu être envoyer pour une raison de connexion!");
}
}
function afficherForm()
{
document.write("votre message à bien été envoyer. Nous vous contacterons sous 72 heures.");
}
</script>
<title></title>
</head>
<body background="images/fond.jpg">
<H1 align = "center"><font face="Forte" color="#00999">Nous contacter</font></H1>
<br><br>
<font face="comic sans ms">
<b>- Par téléphone:</b>
<br><br>
<font size="5" color="red">
<p align="center">
Tél: 02 99 05 90 90<br>
Fax: 02 99 05 90 99<br>
</p>
</font>
<table border="0" align="center" width="40%">
<tr><td align="left">
<font size="3" color="red">
Dominique DEMANGHON <br>
Jimmy DEMANGHON <br>
</font>
</td><td align="left">
<font size="3" color="red">
06 81 43 20 11<br>
06 77 38 26 14<br>
</font>
</td></tr></table>
<br><br>
<font color=red size=5>
<center>
Pour tout renseignement ou étude personnalisée de vos besoins,
nous sommes prêts a vous rencontrer dans votre entreprise
</center></font>
<br><br>
<b>- Par e-mail:</b>
<br><br>
Les champs inscris d'une étoile rouge sont obligatoire à la saisie
<br><br>
<form name="mail" action="mailto:demanghonj@gmail.com" method="post">
<table border="0" align="center" width="90%">
<tr><td align="left">
<font color="red">*</font>Société:
</td><td>
<input type="text" name="societe">
</td><td>
Activité:<input type="text" name="activité">
</td></tr>
<tr><td>
<font color="red">*</font>Nom:
</td><td>
<input type="text" name="nom">
</td></tr>
<tr><td>
<font color="red">*</font>Tel:
</td><td>
<input type="text" name="tel">
</td></tr></table>
<br><br>
Vous souhaitez:<br>
<br>
<table align="center" width="90%"
<tr><td>
<input type="checkbox" name="doc"> Recevoir une documentation<br>
<input type="checkbox" name="doc"> Rencontrer l'un de nos conseiller
</td></tr></table>
<br><br>
Vos commentaires:<br>
<br>
<TEXTAREA NAME="commentaire" ROWS=5 COLS=90>vos commentaires...</TEXTAREA>
<br><br>
<center><input type="button" value="Envoyer" onClick="sendMail(this.form)"></center>
</font>
</form>
</body>
</html> |
Partager