nettoyage du formulaire HTML et ajout d'un champs "types"

This commit is contained in:
Jeremy MANSON 2018-12-20 21:50:17 +01:00
parent 0d0bd19186
commit e1901a195f

View File

@ -1,40 +1,51 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Ajout d'opération</title>
<head>
<title>Ajout d'une opération</title>
<meta charset="utf-8">
<meta name="description" content="165c. uniques">
<link href="style.css" type="text/css" rel="stylesheet" media="all" />
<link href="style.css" type="text/css" rel="stylesheet" media="all" />
</head>
<body>
</html>
<table>
<tr>
<td>Date</td>
<td>Montant</td>
<td>Mode de paiement</td>
<td>Catégorie</td>
<td>Commentaire</td>
<td>Pieces</td>
<td>TAG</td>
<td>compte</td>
</tr>
<tr>
<td>
<form method="post" action="traitement.php">
<p><input type="date" /></p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p><input type="text" name="pseudo" /></p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p>
<body>
<table>
<tr>
<td>Type d'operation</td>
<td>Date</td>
<td>Montant</td>
<td>Mode de paiement</td>
<td>Catégorie</td>
<td>Commentaire</td>
<td>Pieces</td>
<td>TAG</td>
<td>compte</td>
</tr>
<tr>
<td>
<form method="post" action="traitement.php">
<select name="entree_sortie" id="entree_sortie">
<option value="cb">Sortie</option>
<option value="paypal">Entrée</option>
</select>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<input type="date" />
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p><input type="text" name="montant" /></p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<select name="moyen_paiment" id="moyen_paiment">
<option value="cb">Carte Bleu</option>
<option value="paypal">Paypal</option>
@ -42,12 +53,11 @@
<option value="virement">Virement</option>
<option value="prelevement">Prelevement</option>
</select>
</p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<select name="categories" id="categories">
<option value="Alimentation & Higienes">Alimentation & Higienes</option>
<option value="Charges régulieres">Charges Régulieres</option>
@ -55,35 +65,38 @@
<option value="Geek">Geek</option>
<option value="extras">Sorties & cadeaux</option>
</select>
</p>
</td>
<td>
<form method="post" action="traitement.php">
</td>
<td>
<form method="post" action="traitement.php">
<textarea name="commentaire" id="commentaire"></textarea>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<input type="file" name="nom" />
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p><input type="text" name="pseudo" /></p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<input type="file" name="file" />
</form>
</td>
<td>
<form method="post" action="traitement.php">
<p><input type="text" name="tag" /></p>
</form>
</td>
<td>
<form method="post" action="traitement.php">
<select name="compte" id="compte">
<option value="cc">Compte courant</option>
<option value="credit">Credit</option>
<option value="placement">Placement</option>
</select>
</p>
</form>
</td>
</tr>
</table>
</body>
</form>
</td>
</tr>
</table>
</body>
</html>