-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<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>Budget Tracker Ver.1</title>
<link rel="stylesheet" href="main.css">
<script type="module" src="main.js"></script>
</head>
<body>
<div id="app">
<!--<table class="budget-tracker">
<thead>
<tr>
<th>Date</th>
<th>Description</th>
<th>Type</th>
<th>Amount</th>
<th></th>
</tr>
</thead>
<tbody class="entries">
<tr>
<td>
<input class="input input-date" type="date">
</td>
<td>
<input class="input input-description" type="text" placeholder="Add a Description (e.g. wages, bills, etc.)">
</td>
<td>
<select class="input input-type">
<option value="income">Income</option>
<option value="expense">Expense</option>
</select>
</td>
<td>
<input type="number" class="input input-amount">
</td>
<td>
<button type="button" class="delete-entry">✕</button>
</td>
</tr>
</tbody>
<tbody>
<tr>
<td colspan="5" class="controls">
<button type="button" class="new-entry">New Entry</button>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="5" class="summary">
<strong>Total:</strong>
<span class="total">0.00€</span>
</td>
</tr>
</tfoot>
</table>-->
</div>
</body>
</html>