J'ai vu sur un site sa source ou il demande de télécharger un cv, mais le problème que j'ais, c'est que meme en faisant comme lui et en remplacant les "value" par les miennes, cela ne fonctionne pas. je vous donne la source si ca peut aider certains.
<html>
<head>
<title>delicabar recrute</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body, table {font-family: Arial;font-size: 11px;}
.titre {font-size: 13px; font-weight: bold;}
.formulaire {font-size: 11px;background-color:#fff;border: #000 1px solid;}
.bouton {font-size: 11px;color: #000;background-color:#ff7f00;border: #000 1px solid;}
h1 {font-family: Monospace}
</style>
<script language="javascript1.2">
<!--
function ValidForm(theForm)
{
// court-circuit des tests
//return (true);
//validation infos demandeur
theForm.nom.value = enlevespace(theForm.nom.value);
if (theForm.nom.value == "")
{ alert("Veuillez saisir votre nom");
theForm.nom.focus();
return (false);
}
theForm.prenom.value = enlevespace(theForm.prenom.value);
if (theForm.prenom.value == "")
{ alert("Veuillez saisir votre prénom");
theForm.prenom.focus();
return (false);
}
theForm.email.value = enlevespace(theForm.email.value);
if (theForm.email.value == "")
{
alert("Veuillez saisir votre email");
theForm.email.focus();
return (false);
}
else
{
var str=theForm.email.value
var expregmail=/^.+@.+\..{2,5}$/
if (expregmail.test(str))
{}
else
{
alert("Email invalide");
theForm.email.focus();
return (false);
}
if (theForm.email.value.indexOf("'") !== -1)
{
alert("Merci de ne pas mettre d'apostrophe dans l\'email");
theForm.email.focus();
return (false);
}
if (theForm.email.value.indexOf('"') !== -1)
{
alert("Merci de ne pas mettre de guillemet dans l\'email");
theForm.email.focus();
return (false);
}
if (theForm.email.value.indexOf(' ') !== -1)
{
alert("Merci de ne pas mettre d'espace dans l\'email");
theForm.email.focus();
return (false);
}
if (theForm.email.value.indexOf(';') !== -1)
{
alert("Merci de ne pas mettre de \";\" dans l\'email");
theForm.email.focus();
return (false);
}
}
theForm.poste.value = enlevespace(theForm.poste.value);
if (theForm.poste.value == "")
{ alert("Veuillez saisir le poste recherché");
theForm.poste.focus();
return (false);
}
theForm.piecejointe.value = enlevespace(theForm.piecejointe.value);
if (theForm.piecejointe.value != "")
{ var nomfichier=theForm.piecejointe.value.toLowerCase();
if (nomfichier.indexOf(".doc") < 0)
{ alert("Le cv doit être au format .doc");
theForm.piecejointe.focus();
return (false);
}
}
theForm.Submit.disabled=true;
return (true);
}
function enlevespace(champ)
{
if (champ.charAt(0) == " ")
{
do {champ=champ.substr(1)}
while (champ.charAt(0) == " ")
}
return champ;
}
-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="self.focus();">
<div align="center"><span class="titre"><br><img src="images/recrute.gif"></span><br><br></div>
<form method="POST" action="http://www.jexiste.fr/mail.php" name="formrecrut" onsubmit="return ValidForm(this);" ENCTYPE="multipart/form-data">
<table border="0" cellspacing="1" cellpadding="2" align="center" width="80%">
<tr>
<td class="detail" width="260">Nom * :</td>
<td>
<input type="TEXT" name="nom" size=25 maxlength=60 class="formulaire">
</td>
</tr>
<tr>
<td class="detail" width="260">Prénom * :</td>
<td>
<input type="TEXT" name="prenom" size=25 maxlength=60 class="formulaire">
</td>
</tr>
<tr>
<td class="detail" width="260">Téléphone :</td>
<td>
<input type="TEXT" name="tel" size=25 maxlength=20 class="formulaire">
</td>
</tr>
<tr>
<td class="detail" width="260">G.S.M. :</td>
<td>
<input type="TEXT" name="gsm" size=25 maxlength=20 class="formulaire">
</td>
</tr>
<tr>
<td class="detail" width="260">E-mail * :</td>
<td>
<input type="TEXT" name="email" size=25 maxlength=50 class="formulaire">
<br>
</td>
</tr>
<tr>
<td class="detail" width="260" valign="top">Poste recherché :</td>
<td>
<textarea name="poste" rows="5" cols="30" class="formulaire"></textarea>
</td>
</tr>
<tr>
<td class="detail" width="260">Joindre un curriculum vitae (format .doc : 1 Mo max) :</td>
<td>
<input type="file" name="piecejointe" size="20" maxlength="50" class="formulaire">
</td>
</tr>
<tr>
<td colspan="2" align="center"><br/>
<input type="Submit" name="Submit" value="Envoyer" class="bouton">
</td>
</tr>
<tr>
<td class="detail" colspan="4" align="center"> <br/>
* : Champs obligatoires.</td>
</tr>
</table>
</form>
</body>
</html>
Je vous donne aussi le lien de la page que j'ai essayé de modifier en vain.
http://cpi.villa-sud.com/form.asp
Merci pour vos réponse