-
Notifications
You must be signed in to change notification settings - Fork 0
/
tickets.html
163 lines (160 loc) · 6.9 KB
/
tickets.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="copyright" content="Lucas Hoz" />
<meta name="robots" content="index, follow" />
<meta name="Author" lang="es" content="Lucas Hoz" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Práctica Front-end del curso Codo a Codo - Full Stack Java." />
<meta
name="keywords"
content="Codo a Codo - Full Stack Java, Front-end, HTML, CSS, JavaScript, Bootstrap, Trabajo práctico, Integrador"
/>
<link rel="stylesheet" href="./CSS/main.css" />
<link rel="stylesheet" href="./CSS/tickets.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<title>Trabajo práctico integrador - Tickets</title>
</head>
<body class="d-flex flex-column min-vh-100">
<!-- ------------------------- Menú de Navegación -------------------------- -->
<header>
<nav class="navbar navbar-expand-lg bg-dark px-5">
<div class="container-fluid">
<a class="navbar-brand text-white" href="./index.html">Conf Bs As</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white text-opacity-25" aria-current="page" href="./index.html#section-conference"
>La conferencia</a
>
</li>
<li class="nav-item">
<a class="nav-link text-white text-opacity-25" href="./index.html#section-speakers">Los oradores</a>
</li>
<li class="nav-item">
<a class="nav-link text-white text-opacity-25" href="./index.html#section-october">El lugar y la fecha</a>
</li>
<li class="nav-item">
<a class="nav-link text-white active" href="./index.html#section-speaker">Conviértete en orador</a>
</li>
<li class="nav-item">
<a class="nav-link text-success active fw-semibold" href="./tickets.html">Comprar tickets</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- ------------------------- Contenido Principal ------------------------- -->
<main>
<!-- Categoría de Tickets -->
<section
id="section-categories"
class="btn-group mt-4 d-flex flex-row justify-content-center align-items-center flex-wrap"
role="group"
style="margin: 0 15%"
>
<div class="card border border-primary rounded-0 m-1">
<div class="card-body text-center p-4">
<h5 class="card-title fs-4">Estudiante</h5>
<p class="card-text">Tiene un descuento</p>
<p class="card-text fw-bold">80%</p>
<p class="card-text"><small class="text-muted">* presentar documentación</small></p>
</div>
</div>
<div class="card border border-success rounded-0 m-1">
<div class="card-body text-center p-4">
<h5 class="card-title fs-4">Trainee</h5>
<p class="card-text">Tiene un descuento</p>
<p class="card-text fw-bold">50%</p>
<p class="card-text"><small class="text-muted">* presentar documentación</small></p>
</div>
</div>
<div class="card border border-warning rounded-0 m-1">
<div class="card-body text-center p-4">
<h5 class="card-title fs-4">Junior</h5>
<p class="card-text">Tiene un descuento</p>
<p class="card-text fw-bold">15%</p>
<p class="card-text"><small class="text-muted">* presentar documentación</small></p>
</div>
</div>
</section>
<!-- Formulario de venta -->
<section id="section-sell" class="my-3">
<div class="text-center mb-3">
<p class="m-0 fs-6"><small>VENTA</small></p>
<h2 class="m-0">VALOR DE TICKET $200</h2>
</div>
<div class="row" style="margin: 1% 15%">
<div class="col">
<input type="text" class="form-control" placeholder="Nombre" aria-label="Nombre" />
</div>
<div class="col">
<input type="text" class="form-control" placeholder="Apellido" aria-label="Apellido" />
</div>
<div class="mt-3">
<input type="email" class="form-control" placeholder="Correo" aria-label="Email" />
</div>
<div class="mt-3 col">
<label for="number-of-tickets" class="form-label">Cantidad</label>
<input type="number" class="form-control" id="number-of-tickets" placeholder="cantidad" />
</div>
<div class="mt-3 col">
<label for="category-selected" class="form-label">Categoria</label>
<select id="category-selected" class="form-select" aria-label="Default select example">
<option value="student" selected>Estudiante</option>
<option value="trainee">Trainee</option>
<option value="junior">Junior</option>
</select>
</div>
<div>
<div class="alert alert-primary mt-3" role="alert">Total a Pagar: $<span id="total-price"></span></div>
</div>
<div class="mt-3 d-grid gap-2 col">
<button id="btn-delete" class="btn text-white fw-semibold" style="background-color: #96c93e">Borrar</button>
</div>
<div class="mt-3 d-grid gap-2 col">
<button id="btn-estimate" class="btn text-white fw-semibold" style="background-color: #96c93e">Resumen</button>
</div>
</div>
</section>
</main>
<!-- ---------------------------- Pie de Página ---------------------------- -->
<footer class="mt-auto py-3" style="background-color: #1e4258">
<div class="d-flex flex-row justify-content-center align-items-center flex-wrap" style="margin: 0% 10%">
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Preguntas frecuentes</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Contáctanos</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Prensa</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Conferencias</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Términos y condiciones</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Privacidad</a>
<a class="footer-links p-2 flex-fill text-white text-decoration-none" href="#">Estudiantes</a>
</div>
</footer>
</body>
<!-- ----------------------------- JavaScript ------------------------------ -->
<script src="./JS/showTicketsPrice.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"
></script>
</html>