Mon formulaire n'est pas envoyé
Bonjour,
Je voudrai envoyer un formulaire (inséré dans un site hébergé par FREE) mais n'y parvient pas:
Ou le message ne part pas.
Ou le "type radio" ne fonctionne pas.
Code:
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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
</head>
<body text="#008080" bgcolor="#DDFFFF">
<SCRIPT LANGUAGE="JavaScript">
function Envoyer(f) {
f.submit();
}
</SCRIPT>
<body>
<style>
[type=radio] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}
/* IMAGE STYLES */
[type=radio] + img {
cursor: pointer;
}
/* CHECKED STYLES */
[type=radio]:checked + img {
outline: 2px solid #008080;
}
</style>
<label>
<input type="radio" name="vote" value="Bon" checked>
<img src="../images/like/oui.gif">
</label>
<label>
<input type="radio" name="vote" value="Moyen">
<img src="../images/like/moyen.gif">
</label>
<label>
<input type="radio" name="vote" value="Mauvais">
<img src="../images/like/non.gif">
</label>
<div class="button">
<button type="submit">Envoyer</button>
</div>
</body>
</html> |
Toute aide sera la bienvenue.
Merci d'avance.