Skip to content

Instantly share code, notes, and snippets.

@Ludovicmoreau
Created September 21, 2016 14:31
Show Gist options
  • Save Ludovicmoreau/a14635e560c6db3bd58946cd26eee073 to your computer and use it in GitHub Desktop.
Save Ludovicmoreau/a14635e560c6db3bd58946cd26eee073 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Formulaire</title>
<meta charset="utf-8">
</head>
<body>
<FORM action="result.php" method="POST">
<P>
<LABEL for="prenom">Prénom : </LABEL>
<INPUT type="text" id="prenom" name="prenom"><BR>
<LABEL for="nom">Nom : </LABEL>
<INPUT type="text" id="nom" name="nom"><BR>
<LABEL for="email">e-mail : </LABEL>
<INPUT type="text" id="email" nom="email"><BR>
<INPUT type="radio" name="genre" value="homme"> Homme<BR>
<INPUT type="radio" name="genre" value="femme"> Femme<BR>
<INPUT type="submit" value="Envoyer"> <INPUT type="reset">
</P>
</FORM>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment