-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 2.55 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:100,400" rel="stylesheet">
<link rel="stylesheet" href="css/custom.css">
<title>Gasto Semanal</title>
</head>
<body>
<div class="container">
<header>
<h1 class="text-center">Gasto Semanal</h1>
</header>
<section class="contenido-principal">
<div class="row">
<div class="col ">
<div class="contenido primario">
<h2 class="text-center">Añade tus gastos aqui</h2>
<form id="agregar-gasto" action="#">
<div class="form-group">
<label for="gasto">Gasto:</label>
<input type="text" class="form-control" id="gasto" placeholder="Nombre Gasto">
</div>
<div class="form-group">
<label for="cantidad">Cantidad:</label>
<input type="text" class="form-control" id="cantidad" placeholder="Cantidad en $">
</div>
<button type="submit" class="btn btn-primary">Agregar</button>
</form>
</div> <!--.contenido-->
</div> <!--.col-->
<div class="col">
<div class="contenido secundario">
<h2 class="text-center">Listado</h2>
<div id="gastos">
<ul class="list-group"></ul>
</div>
<div id="presupuesto" class="presupuesto">
<div class="alert alert-primary">
<p>Presupuesto: $ <span id="total"></span> </p>
</div>
<div class="restante alert alert-success">
<p>Restante: $ <span id="restante"></span></p>
</div>
</div> <!--.presupuesto-->
</div> <!--.contenido-->
</div><!--.col-->
</div> <!--.row-->
</section>
</div>
<script src="js/app.js"></script>
</body>
</html>