-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 2.63 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
<!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>Sistema de Finanças</title>
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<section class="summary">
<header>
<h1>Sistema de Finanças</h1>
</header>
<div>
<h2>Resumo</h2>
</div>
<div class="summary-card">
<div>
<h3>Entradas</h3>
<span class="incomes">0.00</span>
</div>
<div>
<h3>Saídas</h3>
<span class="expenses">0.00</span>
</div>
<div>
<h3>Total</h3>
<span class="total">0.00</span>
</div>
</div>
</section>
<section class="transactions">
<h2>Registros de Transação</h2>
<div class="new-transaction">
<div class="input-group">
<label for="desc">Descrição:</label>
<input type="text" id="desc" />
</div>
<div class="input-group">
<label for="amount">Valor:</label>
<input type="number" id="amount" />
</div>
<div class="input-group">
<label for="date">Data:</label>
<input type="date" id="date" />
</div>
<div class="input-group">
<label for="category">Categoria:</label>
<input type="text" id="category" />
</div>
<div class="input-group">
<label for="client">Cliente:</label>
<input type="text" id="client" />
</div>
<div class="input-group">
<label for="invoiceNumber">Número de Fatura:</label>
<input type="text" id="invoiceNumber" />
</div>
<div class="input-group">
<label for="type">Tipo:</label>
<select id="type">
<option>Entrada</option>
<option>Saída</option>
</select>
</div>
<button id="btnNew">Incluir</button>
</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Descrição</th>
<th>Valor</th>
<th>Data</th>
<th>Categoria</th>
<th>Cliente</th>
<th>Número de Fatura</th>
<th class="columnType">Tipo</th>
<th class="columnAction"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>