Problème tableau/formulaire input (submit/reset)
Bonjour j'ai un exercice a finir et j'ai un petit problème!
J'ai donc écrit mon code tous fonctionne sauf la fin avec les bouton submit et reset qui sont présents sur ma page mais qui ne fonctionne pas et je ne vois pas d'où cela peut venir!
Voici mon code:
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| <html>
<head>
<title>Tableau/formulaire étudiant pour l'inscription Intranet</title>
</head>
<p><center><h1><u>Tableau/formulaire étudiant</u></h1></center></p>
<table border="1">
<tr>
<td>Nom : <input type="text " name="nom" > </td>
<td>Prénom : <input type="text " name="prénom" ></td>
</tr>
<tr>
<td>Age : <input type="text " name="age" ></td>
<td>Sexe : <input type="radio" name="sexe" value="homme"> Homme
<input type="radio" name="sexe" value="femme"> Femme
<input type="radio" name="sexe" value="autre"> Autre</td>
</tr>
<tr>
<td>Situation Familiale : <select name="fonction">
<option value="célibataire">Célibataire</option>
<option value="en couple">En couple</option>
<option value="marié">Marié</option>
<option value="veuf/veuve">Veuf/Veuve</option>
</select></td>
</tr>
<tr>
<td>Adresse : <br><textarea name="adresse" rows=1 cols=50>
</textarea></td></br>
</tr>
<tr>
<td><u>Modules suivis : </u><br></br>
<input type="checkbox" name=“francais" > Francais
<br></br>
<input type="checkbox" name=“philosophie" > Philosophie
<br></br>
<input type="checkbox" name=“anglais"> Anglais
<br></br>
<input type="checkbox" name=“allemand"> Allemand
<br></br>
<input type="checkbox" name=“espagnol"> Espagnol
<br></br>
<input type="checkbox" name=“physique"> Physique
<br></br>
<input type="checkbox" name=“chimie"> Chimie
<br></br>
<input type="checkbox" name=“biologie"> Biologie
<br></br>
<input type="checkbox" name=“mathématiques"> Mathématiques
<br></br>
<input type="checkbox" name=“informatique"> Informatique
<br></br>
<input type="checkbox" name=“autres"> Autres : <input type="text " name="autres" value="Précisez"
onFocus="javascript:this.value=''" ></td>
<td><u>Parcours choisi : </u><br></br>
<input type="radio" name="a" value="licence"> License : <input type="text " name="licence" value="Précisez la filière"
onFocus="javascript:this.value=''" >
<br></br>
<input type="radio" name="a" value="master"> Master : <input type="text " name="licence" value="Précisez la filière"
onFocus="javascript:this.value=''" >
<br></br>
<input type="radio" name="a" value="doctorat"> Doctorat : <input type="text " name="licence" value="Précisez la filière"
onFocus="javascript:this.value=''" >
<br></br>
<input type="radio" name="a" value="classique"> Classique : <input type="text " name="licence" value="Précisez la filière"
onFocus="javascript:this.value=''" ></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Valider"> ou <input type="reset" value="Effacer"></td>
</tr>
</table>
</html> |
La partie en rouge est défaillante et est la source de mon problème!Quelqu'un peut m'aider?:D