-
Notifications
You must be signed in to change notification settings - Fork 0
/
pasteles.html
88 lines (79 loc) · 2.09 KB
/
pasteles.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
<div>
<br>
<br><br>
<h2>Populares</h2>
<table>
<tr>
<th>Sabor</th>
<th>Precio</th>
</tr>
<tr>
<td>arcoiris</td>
<td>$300</td>
</tr>
<tr>
<td>café</td>
<td>$500</td>
</tr>
<tr>
<td>tres leches</td>
<td>$300</td>
</tr>
</table>
<br>
<h2>Combinados - $500</h2>
<br>
<h2>Adornos</h2>
<table>
<tr>
<th>Toppings</th>
<th>Precio</th>
</tr>
<tr>
<td>lunetas</td>
<td>$50</td>
</tr>
<tr>
<td>raspberries</td>
<td>$80</td>
</tr>
</table>
</div>
<h1>Pedido</h1>
<h2>Datos - Cliente</h2>
<form action="/accion.js" id="form1" method="post">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" placeholder="Ele">
<br>
<br>
<label for="tel1">Teléfono:</label>
<input type="tel" id="tel1" name="tel1" placeholder="5588888888" maxlength="10">
<br>
<br>
<label for="correo">Correo:</label>
<input type="email" id="correo" name="correo" placeholder="[email protected]">
<br>
<br>
<h3>Sabores de pastel</h3>
<label for=arcoiris">arcoiris</label>
<input type="checkbox" id="arcoiris" name="arcoiris">
<br>
<label for="cafe">café</label>
<input type="checkbox" id="cafe" name="cafe">
<br>
<label for="treslech">tres leches</label>
<input type="checkbox" id="treslech" name="treslech">
<br>
<br>
<h3>Adornos</h3>
<label for="lunetas">lunetas</label>
<input type="checkbox" id="lunetas" name="lunetas">
<br>
<label for="raspberries">raspberries</label>
<input type="checkbox" id="raspberries" name="raspberries">
<br>
<br>
</form>
<a href="./pedido.html">
<input type="button" value="Enviar pedido">
</a>