nettoyage du formulaire HTML et ajout d'un champs "types"
This commit is contained in:
parent
0d0bd19186
commit
e1901a195f
135
formuaire.php
135
formuaire.php
@ -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>
|
Loading…
x
Reference in New Issue
Block a user