-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.php
188 lines (177 loc) · 9.66 KB
/
registro.php
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
<?php include_once 'includes/templates/header.php';?>
<section class="seccion contenedor">
<h2>Registro de Usuarios</h2>
<form id="registro" class="registro" action="index.html" method="POST">
<div id="datos_usuario" class="registro caja clearfix">
<div class="campo">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" placeholder="Tu Nombre">
</div>
<div class="campo">
<label for="apellido">Apellido:</label>
<input type="text" id="apellido" name="apellido" placeholder="Tu Apellido">
</div>
<div class="campo">
<label for="email">Email:</label>
<input type="text" id="email" name="email" placeholder="Tu Email">
</div>
<div id="error"></div>
</div><!--Datos de Usuario-->
<div id="paquetes" class="paquetes">
<h3>Elige el numero de boletos</h3>
<ul class="lista-precios clearfix">
<li>
<div class="tabla-precio">
<h3>Pase por dia(viernes)</h3>
<p class="numero">$30</p>
<ul>
<li>Bocadillos Gratis</li>
<li>Todas las Conferencias</li>
<li>Todos los Talleres</li>
</ul>
<div class="orden">
<label for="pase_dia">Boletos deseados</label>
<input type="number" min="0" id="pase_dia" size="3" placeholder="0">
</div>
</div>
</li>
<li>
<div class="tabla-precio">
<h3>Todos los dias</h3>
<p class="numero">$50</p>
<ul>
<li>Bocadillos Gratis</li>
<li>Todas las Conferencias</li>
<li>Todos los Talleres</li>
</ul>
<div class="orden">
<label for="pase_completo">Boletos deseados</label>
<input type="number" min="0" id="pase_completo" size="3" placeholder="0">
</div>
</div>
</li>
<li>
<div class="tabla-precio">
<h3>Pase por 2 dias (viernes y sabado)</h3>
<p class="numero">$45</p>
<ul>
<li>Bocadillos Gratis</li>
<li>Todas las Conferencias</li>
<li>Todos los Talleres</li>
</ul>
<div class="orden">
<label for="pase_dosdias">Boletos deseados</label>
<input type="number" min="0" id="pase_dosdias" size="3" placeholder="0">
</div>
</div>
</li>
</ul>
</div><!--Paquetes-->
<div id="eventos" class="eventos clearfix">
<h3>Elige tus talleres</h3>
<div class="caja">
<div id="viernes" class="contenido-dia clearfix">
<h4>Viernes</h4>
<div>
<p>Talleres:</p>
<label><input type="checkbox" name="registro" id="taller_01" value="taller_01"><time>10:00 </time>Responsive Web Design</label>
<label><input type="checkbox" name="registro" id="taller_02" value="taller_02"><time>12:00 </time>Flexbox</label>
<label><input type="checkbox" name="registro" id="taller_03" value="taller_03"><time>14:00 </time>HTML5 y CSS3</label>
<label><input type="checkbox" name="registro" id="taller_04" value="taller_04"><time>17:00 </time>Drupal</label>
<label><input type="checkbox" name="registro" id="taller_05" value="taller_05"><time>19:00 </time>WordPress</label>
</div>
<div>
<p>Conferencias:</p>
<label><input type="checkbox" name="registro" id="conf_01" value="conf_01"><time>10:00 </time>Como ser Freelancer</label>
<label><input type="checkbox" name="registro" id="conf_02" value="conf_02"><time>17:00 </time>Tecnologias del Futuro</label>
<label><input type="checkbox" name="registro" id="conf_03" value="conf_03"><time>19:00 </time>Seguridad en la Web</label>
</div>
<div>
<p>Seminarios:</p>
<label><input type="checkbox" name="registro" id="sem_01" value="sem_01"><time>10:00 </time>Diseño UI y UX para moviles</label>
</div>
</div><!--Viernes-->
<div id="sabado" class="contenido-dia clearfix">
<h4>Sabado</h4>
<div>
<p>Talleres:</p>
<label><input type="checkbox" name="registro" id="taller_06" value="taller_06"><time>10:00 </time>AngularJS</label>
<label><input type="checkbox" name="registro" id="taller_07" value="taller_07"><time>12:00 </time>PHP y MySQL</label>
<label><input type="checkbox" name="registro" id="taller_08" value="taller_08"><time>14:00 </time>JavaScript Avanzado</label>
<label><input type="checkbox" name="registro" id="taller_09" value="taller_09"><time>17:00 </time>SEO en Google</label>
<label><input type="checkbox" name="registro" id="taller_10" value="taller_10"><time>19:00 </time>De Photoshop a HTML5 y CSS3</label>
<label><input type="checkbox" name="registro" id="taller_11" value="taller_11"><time>21:00 </time>PHP Medio y Avanzado</label>
</div>
<div>
<p>Conferencias:</p>
<label><input type="checkbox" name="registro" id="conf_04" value="conf_04"><time>19:00 </time>Como crear una tienda online que venda</label>
<label><input type="checkbox" name="registro" id="conf_05" value="conf_05"><time>19:00 </time>Los mejores lugares para encontrar trabajo</label>
<label><input type="checkbox" name="registro" id="conf_06" value="conf_06"><time>19:00 </time>Pasos para crear un negocio rentable</label>
</div>
<div>
<p>Seminarios:</p>
<label><input type="checkbox" name="registro" id="sem_02" value="sem_02"><time>19:00 </time>Aprende a Programar en una mañana</label>
<label><input type="checkbox" name="registro" id="sem_03" value="sem_03"><time>19:00 </time>Diseño UI y UX para moviles</label>
</div>
</div><!--Sabado-->
<div id="domingo" class="contenido-dia clearfix">
<h4>Domingo</h4>
<div>
<p>Talleres:</p>
<label><input type="checkbox" name="registro" id="taller_06" value="taller_12"><time>10:00 </time>Laravel</label>
<label><input type="checkbox" name="registro" id="taller_07" value="taller_13"><time>12:00 </time>Crea tu propia API</label>
<label><input type="checkbox" name="registro" id="taller_08" value="taller_14"><time>14:00 </time>JavaScript y jQuery</label>
<label><input type="checkbox" name="registro" id="taller_09" value="taller_15"><time>17:00 </time>Creando Plantillas para WordPress</label>
<label><input type="checkbox" name="registro" id="taller_10" value="taller_16"><time>19:00 </time>Tiendas Virtuales en Magneto</label>
</div>
<div>
<p>Conferencias:</p>
<label><input type="checkbox" name="registro" id="conf_04" value="conf_04"><time>10:00 </time>Como hacer Marketing en linea</label>
<label><input type="checkbox" name="registro" id="conf_05" value="conf_05"><time>17:00 </time>¿Con que lenguaje debo empezar?</label>
<label><input type="checkbox" name="registro" id="conf_06" value="conf_06"><time>19:00 </time>Frameworks y librerias Open Source</label>
</div>
<div>
<p>Seminarios:</p>
<label><input type="checkbox" name="registro" id="sem_04" value="sem_04"><time>14:00 </time>Creando una App en Android en una tarde</label>
<label><input type="checkbox" name="registro" id="sem_05" value="sem_05"><time>17:00 </time>Creando una App en IOS en una tarde</label>
</div>
</div><!--Domingo-->
</div><!--caja-->
</div><!--eventos-->
<div id="resumen" class="resumen">
<h3>Pago y Extras</h3>
<div class="caja clearfix">
<div class="extras">
<div class="orden">
<label for="camisa_evento">Camisa del evento $10 <small>(promocion 7% dto.)</small></label>
<input type="number" min="0" id="camisa_evento" size="3" placeholder="0">
</div><!--orden-->
<div class="orden">
<label for="etiquetas">Paquete de 10 etiquetas $2 <small>(HTML5,CSS3,JavaScript,Chrome)</small></label>
<input type="number" min="0" id="etiquetas" size="3" placeholder="0">
</div><!--orden-->
<div class="orden">
<label for="regalo">Seleccione un regalo</label><br>
<select id="regalo" required>
<option value="">- Seleccione un regalo --</option>
<option value="ETI">Etiquetas</option>
<option value="PUL">Pulsera</option>
<option value="PLU">Plumas</option>
</select>
</div><!--orden---->
<input type="button" id="calcular" class="button" value="Calcular">
</div><!--extras-->
<div class="total">
<p>Resumen:</p>
<div id="lista-productos">
</div>
<p>Total:</p>
<div id="suma-total" >
</div>
<input id="btnRegistro" type="submit" class="button" value="Pagar">
</div><!--Total-->
</div><!--Caja-->
</div><!--Resumen-->
</form>
</section>
<?php include_once 'includes/templates/footer.php';?>