-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.money.html
More file actions
40 lines (38 loc) · 891 Bytes
/
index.money.html
File metadata and controls
40 lines (38 loc) · 891 Bytes
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
<div
class="tab-pane fade show active text-center"
id="money-content"
role="tabpanel"
>
<h2>💸 Money Received</h2>
<div class="money-input container">
<input type="date" class="form-control" />
<input type="text" />
<button class="btn bg-black text-light">Add</button>
</div>
<table class="table">
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Sum</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">01 04</th>
<td>2000</td>
<td class="edit">✏️ 🗑️</td>
</tr>
<tr>
<th scope="row">03 04</th>
<td>3000</td>
<td class="edit">✏️ 🗑️</td>
</tr>
<tr>
<th scope="row">15 04</th>
<td>1500</td>
<td class="edit">✏️ 🗑️</td>
</tr>
</tbody>
</table>
</div>