-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
74 lines (64 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap"
rel="stylesheet" />
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/tw-elements/dist/css/tw-elements.min.css" />
<link rel="stylesheet" href="style.css">
<title>Transações Bancárias - Trybe</title>
</head>
<body>
<header>🏦 <em>Banco of Bank</em> 🏦</header>
<section class="filters">
<select name="" id="customer-name">
<option value="">Selecione a pessoa ...</option>
</select>
<div class="months">
<input type="checkbox" name="month" id="Janeiro">
<label for="Janeiro">Janeiro</label>
<input type="checkbox" name="month" id="Fevereiro">
<label for="Fevereiro">Fevereiro</label>
<input type="checkbox" name="month" id="Março">
<label for="Março">Março</label>
<input type="checkbox" name="month" id="Abril">
<label for="Abril">Abril</label>
<input type="checkbox" name="month" id="Maio">
<label for="Maio">Maio</label>
<input type="checkbox" name="month" id="Junho">
<label for="Junho">Junho</label>
<input type="checkbox" name="month" id="Julho">
<label for="Julho">Julho</label>
<input type="checkbox" name="month" id="Agosto">
<label for="Agosto">Agosto</label>
<input type="checkbox" name="month" id="Setembro">
<label for="Setembro">Setembro</label>
<input type="checkbox" name="month" id="Outubro">
<label for="Outubro">Outubro</label>
<input type="checkbox" name="month" id="Novembro">
<label for="Novembro">Novembro</label>
<input type="checkbox" name="month" id="Dezembro">
<label for="Dezembro">Dezembro</label>
</div>
</section>
<hr>
<section class="dashboard">
<div class="table-content">
<div id="credit-card-info">
</div>
<div class="transactions">
<table id="transactions-table"></table>
<p id="total-amount"></p>
</div>
</div>
<div id="credit-chart" class="mx-auto w-3/5 overflow-hidden">
<canvas id="bar-chart"></canvas>
</div>
</section>
<script type="text/javascript" src="../node_modules/tw-elements/dist/js/tw-elements.umd.min.js"></script>
<script src="./src/data.js"></script>
<script src="./script.js"></script>
</body>
</html>