-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
218 lines (211 loc) · 7.96 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="pt-br">
<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>MyMoney</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="./index.html">Inicio</a>
<a href="./pages/anual">Anual</a>
<a href="./pages/mensal">Mensal</a>
<a href="./pages/investimentos">Investimentos</a>
</nav>
<div></div>
<div class="add-button-div">
<span class="add-button">+</span>
<div class="buttons">
<button id="new-transaction-button">+ Nova Transação</button>
<button id="new-investment-button">+ Novo Investimento</button>
<button id="new-transfer-button">+ Nova Transferência</button>
</div>
</div>
<div class="menu">
<div class="menu-icon">
<div></div>
<div></div>
<div></div>
</div>
<ul>
<li class="upload-backup">
<input name="upload-backup-option" type="file">
<label for="upload-backup-option">Upload backup</label>
</li>
<li class="download-backup">Download backup</li>
</ul>
</div>
</div>
</header>
<main>
<div class="container">
<section id="whereIsTheMoneySection">
<h2>Onde esta o dinheiro</h2>
<div id="whereIsTheMoneyDiv" class="cards"></div>
</section>
<section id="annualSection">
<h2>Anual</h2>
<div class="table-container">
<table>
<thead>
<tr></tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
<section id="investmentsSection">
<h2>Investimentos</h2>
<h3>Total</h3>
<div class="cards">
<div class="card">
<h3>Investido</h3>
<p></p>
</div>
<div class="card">
<h3>Rend. do último mês</h3>
<p></p>
</div>
<div class="card">
<h3>% Rend. do último mês</h3>
<p></p>
</div>
<div class="card">
<h3>Rend. total</h3>
<p></p>
</div>
<div class="card">
<h3>% Rend. total</h3>
<p></p>
</div>
</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Nome</th>
<th>Inicio</th>
<th>Investido</th>
<th>Rend. do último mês</th>
<th>% Rend. do último mês</th>
<th>Rend. total</th>
<th>% Rend. total</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
</div>
</main>
<div class="modal new-transaction-modal">
<div class="container">
<div class="close-modal-button"></div>
<h2>Adicionar Nova Transação</h2>
<form>
<h3>Metodo de Pagamento</h3>
<div class="payment-methods">
<details class="payment-method">
<summary>Conta</summary>
<input type="text" name="account">
</details>
<details class="payment-method">
<summary>Dinheiro</summary>
<input type="text" name="cash">
</details>
<details class="payment-method">
<summary>Moeda</summary>
<input type="text" name="coin">
</details>
</div>
<div class="transaction-info">
<div>
<h3 class="value">Valor</h3>
<p>R$00,00</p>
</div>
<div>
<label for="date">Data</label>
<input name="date" type="date">
</div>
<div>
<label for="description">Descrição</label>
<input name="description" type="text">
</div>
</div>
<button type="submit">Confirmar</button>
</form>
</div>
</div>
<div class="modal new-investment-modal">
<div class="container">
<div class="close-modal-button"></div>
<h2>Adicionar Novo Investimento</h2>
<form>
<div class="investment-info">
<div>
<label for="name">Nome</label>
<input name="name" type="text">
</div>
<div>
<label for="value">Valor</label>
<input name="value" type="text">
</div>
<div>
<label for="date">Data de Inicio</label>
<input name="date" type="date">
</div>
</div>
<button type="submit">Confirmar</button>
</form>
</div>
</div>
<div class="modal new-transfer-modal">
<div class="container">
<div class="close-modal-button"></div>
<h2>Transferir</h2>
<form>
<div>
<h3>De</h3>
<label for="from-account">
<input type="radio" value="account" name="from" id="from-account">
<p>Conta</p>
</label>
<label for="from-cash">
<input type="radio" value="cash" name="from" id="from-cash">
<p>Dinheiro</p>
</label>
<label for="from-coin">
<input type="radio" value="coin" name="from" id="from-coin">
<p>Moeda</p>
</label>
</div>
<div>
<input id="transfer-value" name="value" type="text">
</div>
<div>
<h3>Para</h3>
<label for="to-account">
<input type="radio" value="account" name="to" id="to-account">
<p>Conta</p>
</label>
<label for="to-cash">
<input type="radio" value="cash" name="to" id="to-cash">
<p>Dinheiro</p>
</label>
<label for="to-coin">
<input type="radio" value="coin" name="to" id="to-coin">
<p>Moeda</p>
</label>
<input type="date" id="transfer-date">
</div>
<button type="submit">Confirmar</button>
</form>
</div>
</div>
<script src="./scripts/script.js" type="module"></script>
</body>
</html>