-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (124 loc) · 3.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gestion</title>
<link rel="stylesheet" href="gestion_budget.css">
</head>
<body>
<div class="titre_container">
<h2>Gestion de Budget <span class="compteur"></span></h2>
<div class="header">
<div class="division_titre">
<div>
<h3>Budget</h3>
<span class="spans_1" id="montant_budget">120.000 CFA</span>
</div>
</div>
<div class="division_titre">
<div>
<h3>Depense</h3>
<span class="spans_2" id="montant_revenu">100.000 CFA</span>
</div>
</div>
<div class="division_titre">
<div>
<h3>Solde</h3>
<span class="spans">20.000 CFA</span>
<!--<h6>budget - depense = Solde</h6>-->
</div>
</div>
</div>
</div>
<div class="containers">
<!--Le Model-->
<div class="modal" id="depense_modal">
<div class="model_content">
<span class="fermer">X</span>
<div class="form">
<form method="post">
<label for="name">Titre</label>
<input class="form_input" type="text" id="titre" name="titre" />
<label for="name">Montant</label>
<input class="form_input" type="number" id="montant" name="montant" />
<button type="submit" class="vld_btn">Valider</button>
</form>
</div>
</div>
</div>
<table class="tabled">
<div class="tete_tableau">
<h4>Liste depense</h4>
<button id="ajouter_depense" type="button">Ajouter Depense</button>
</div>
<thead>
<tr>
<th>Titre</th>
<th>Montant</th>
<th>Action</th>
</tr>
</thead>
<!--
<tbody>
<tr>
<td>Nourriture</td>
<td>2000</td>
<td><button class="mdf_btn">Modifier</button>|<button class="sup_btn">Supprimer</button></td>
</tr>
<tr>
<td>Cafe</td>
<td>100</td>
<td><button class="mdf_btn">Modifier</button>|<button class="sup_btn">Supprimer</button></td>
</tr>
</tbody>
-->
</table>
</div>
<script src="gestion_depenses.js"></script>
<div class="containersR">
<!-- Le modal de la deuxieme partie-->
<div class="modol" id="revenuModal">
<div class="modal-content">
<span class="close">X</span>
<div class="formulaire">
<form method="post">
<label for="name">Titre</label>
<input class="formulaire-input" type="text" id="titreRevenu" name="titre">
<label for="name">Montant</label>
<input class="formulaire-input" type="number" id="montantRevenu" name="montant">
<button type="submit" class="addRevenuButton">Ajouter</button>
</form>
</div>
</div>
</div>
<table class="tables">
<div class="title-content">
<h4>Liste revenus</h4>
<button id="addRevenuModalButton" type="button"> Ajouter Revenu</button>
</div>
<thead>
<tr>
<th>Titre</th>
<th>Montant</th>
<th>Action</th>
</tr>
</thead>
<!--
<tbody>
<tr>
<td>cafe</td>
<td>100</td>
<td>
<button class="modify-btn">Modifier</button>
<button class="delet-btn">Supprimer</button>
</td>
</tr>
</tbody>
-->
</table>
</div>
<script src="gestion_revenus.js" defer></script>
</body>
</html>