-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (58 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Calculadora de Gastos Mensuales</title>
</head>
<body id="body">
<section id="add-module-container">
<section id="add-module-pannel">
<button class="default-button" id="close-add-module-pannel-button">-</button>
<label>
Agregar modulo
<input type="text" id="module-name-input">
</label>
<button id="add-module-button">Añadir modulo</button>
</section>
</section>
<section id="container">
<form id="form">
<div class="module-containers">
<div class="module-container-scroll" id="incomes-container">
<button type="button" class="default-button open-module-pannel-button">+</button>
<div class="module" id="salario">
<label>
Salario
<input type="number" class="number-input">
</label>
<Button type="button" class="delte-module-button">Del</Button>
</div>
</div>
</div>
<div class="module-containers">
<div class="module-container-scroll" id="expenses-container">
<button type="button" class="default-button open-module-pannel-button">+</button>
<div class="module" id="arriendo">
<label>
Arriendo
<input type="number" class="number-input">
</label>
<Button type="button" class="delte-module-button">Del</Button>
</div>
</div>
</div>
</form>
<aside id="results-container">
<div id="final-result">
<span class="result-span" id="incomes-span-result">0</span>
<span class="result-span" id="expenses-span-result">0</span>
<span class="result-span" id="total-span-result">0</span>
</div>
<div class="module-containers" id="percentages-container"></div>
</aside>
</section>
<script src="scripts.js"></script>
</body>
</html>