<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="author" content="Manuele" />
<title>Produits</title>
<link rel="stylesheet" href="css/panier.css" />
</head>
<body>
<header>
<h1> Nos Produits </h1>
</header>
<nav>
<p> <a href="Panier.php?action=terminer"> Terminer </a> </p>
<p> <a href="Panier.php"> Voir panier </a> <p>
</nav>
<section>
<table>
<thead> <tr> <th> Produit </th> <th> Prix </th> <th> </th> <th> </th> </tr>
</thead>
<tbody>
<tr>
<td> <b> Autocollant </b>
<br/> Autocollant au symbole du club </td>
<td> 15.00 € </td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value=autocollant />
<input type=hidden name=action value=ajouter />
<input type=submit value="+" />
</form>
</td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value=autocollant />
<input type=hidden name=action value=supprimer />
<input type=submit value="-" />
</form>
</td>
</tr>
<tr>
<td> <b> T-shirt Official </b>
<br/> T-shirt official du club </td>
<td> 35.00 € </td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value="T-shirt Official" />
<input type=hidden name=action value=ajouter />
<input type=submit value="+" />
</form>
</td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value="T-shirt Official" />
<input type=hidden name=action value=supprimer />
<input type=submit value="-" />
</form>
</td>
</tr>
<tr>
<td> <b> T-shirt baby-look </b>
<br/> T-shirt au symbole du club, modele feminin </td>
<td> 25.00 € </td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value="T-shirt baby-look" />
<input type=hidden name=action value=ajouter />
<input type=submit value="+" />
</form>
</td>
<td>
<form action=Panier.php method=get >
<input type=hidden name=produit value="T-shirt baby-look" />
<input type=hidden name=action value=supprimer />
<input type=submit value="-" />
</form>
</td>
</tr>
</tbody>
</table>
</section>
</body>
</html>