You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Formulaire</title>
|
|
<link href="../css/MenuHamburger.css" rel="stylesheet" />
|
|
<link href="../css/StyleFormulaire.css" rel="stylesheet" />
|
|
|
|
</head>
|
|
<body>
|
|
<header>
|
|
|
|
<label>
|
|
<input type="checkbox">
|
|
<span id="menu"> <span id="hamburger"></span> </span>
|
|
<ul>
|
|
<li> <a href="../html/Video.html">Video</a> </li>
|
|
<li> <a href="../html/Img.html">Image</a> </li>
|
|
<li> <a href="../html/Tableaux.html">Tableaux</a> </li>
|
|
<li> <a href="../html/Formulaire.html">Formulaire</a> </li>
|
|
<li> <a href="../html/Index.html">Index</a> </li>
|
|
</ul>
|
|
</label>
|
|
</header>
|
|
<body>
|
|
<h1 id="title">Formulaire</h1>
|
|
|
|
<section>
|
|
<h2>A remplir</h2>
|
|
|
|
<form action="../php/php.php" method="post">
|
|
<label for="prenom">Prenom:</label>
|
|
<input type="text" id="prenom" name="prenom">
|
|
<br>
|
|
<label for="nom">Nom:</label>
|
|
<input type="text" id="prenom" name="nom">
|
|
<br>
|
|
<label for="nom">Mail:</label>
|
|
<input type="text" id="prenom" name="mail">
|
|
<br>
|
|
<label for="nom">Numero:</label>
|
|
<input type="text" id="prenom" name="num">
|
|
<br>
|
|
<br>
|
|
<input type="submit" value="clique">
|
|
|
|
</section>
|
|
|
|
</body>
|