-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (59 loc) · 2.56 KB
/
index.html
File metadata and controls
72 lines (59 loc) · 2.56 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/estilos.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js" integrity="sha512-s+xg36jbIujB2S2VKfpGmlC3T5V2TF3lY48DX7u2r9XzGzgPsa6wTpOQA7J9iffvdeBN0q9tKzRxVxw1JviZPg==" crossorigin="anonymous"></script>
<title>Julius</title>
</head>
<body>
<div id="marca">
<img src="img/LogoJulius.png" alt="Julius">
<span>JULIUS</span>
</div>
<div id="header">
<span id="boasVindas">Olá, Fulano!</span>
<span id="slogan">O Julius vai te ajudar a colocar sua vida
financeira nos eixos!</span>
</div>
<div id="container">
<div id="esquerda">
<span id="lancamentos">Nenhum lançamento cadastrado</span>
<button id="novoLancamento" onclick="alternarFormulario()">
Novo lançamento
</button>
<div id="novoLancamentoMobile">
<button onclick="alternarFormulario()">
+
</button>
</div>
<div id="formularioLancamento">
<form onsubmit="lancar(event)">
<div id="botaoTipoLancamento">
<input type="radio" name="tipoLancamento" id="entrada" value="entrada">
<label for="entrada" class="entrada">Entrada</label>
<input type="radio" name="tipoLancamento" id="gasto" checked value="gasto">
<label for="gasto" class="gasto">Gasto</label>
</div>
<label for="valor">Valor:</label>
<input type="number" step="0.01" min="0" name="valor" id="valor" required>
<label for="descricao">Descrição:</label>
<input type="text" name="descricao" id="descricao" required>
<label for="dataLancamento">Data do lançamento:</label>
<input type="date" name="dataLancamento" id="dataLancamento" required>
<button id="botaoLancar">Lançar</button>
</form>
</div>
<div id="areaLancamentos">
</div>
</div>
<div id="direita">
<span id="labelRenda">Dinheiro em caixa</span>
<span id="renda">R$ 0</span>
<canvas id="graficoLancamentos"></canvas>
</div>
</div>
<script src="index.js"></script>
</body>
</html>