-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpedidos.html
120 lines (103 loc) · 5.52 KB
/
pedidos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pasteleria</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<div class="item1">
<a href="index.html" class="item1"><img src="./images/logo-pastel.png" alt="pasteleria logo" width="250px" id="logo"></a>
</div>
<div align="center" class="item2">
<h4>de los creadores de Taconauta:</h4>
<h1>Pasteleria LaunchX</h1>
</div>
</div>
<nav>
<ul>
<li><a href="historia.html">Nuestra historia</a></li>
<li><a href="pasteles.html">Catalogo Pasteles</a></li>
<li><a href="pedidos.html">Pedidos</a></li>
<li><a href="trabajo.html">Bolsa de Trabajo</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<hr>
<br>
<section>
<h2>Pedidos</h2>
<p>Facil y rapido, haznos llegar tu pedido!</p>
<form action="pedido.js" id="form1" method="post">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required size="35" placeholder="un nombre y un apellido"><br><br>
<label for="telefono">Telefono:</label>
<input type="number" id="telefono" name="telefono" maxlength="10" required placeholder="celular a 10 digitos"><br><br>
<label for="correo">Email:</label>
<input type="mail" id="correo" name="correo" required required size="44" placeholder="escribe tu cuenta de correo electronico"><br><br>
<label for="direccion">Dirección:</label>
<input type="text" id="direccion" name="direccion" required size="35" placeholder="direccion"><br><br>
<p>¿Que pastel vas a conquistar hoy?</p>
<input type="radio" id="choco" name="seleccion-pastel" placeholder="Nombre">
<label for="Nombre">Pastel Chocolactico</label><br>
<input type="radio" id="fresa" name="seleccion-pastel" placeholder="Nombre">
<label for="Nombre">Pastel Fresa Espacial</label><br>
<input type="radio" id="vainilla" name="seleccion-pastel" placeholder="Nombre">
<label for="Nombre">Pastel Vainilla Estelar</label><br>
<input type="radio" id="red" name="seleccion-pastel" placeholder="Nombre">
<label for="Nombre">Pastel Estrella Red Velvet</label><br>
<input type="radio" id="zanahoria" name="seleccion-pastel" placeholder="Nombre">
<label for="Nombre">Pastel Cometa Zanahoria</label><br>
<br>
<p>¿Tamaño del pastel?</p>
<select name="tamaño" id="tamaño">
<option value="Mediano">Mediano</option>
<option value="Grande">Grande</option>
</select>
<br>
<br>
<p>¿Adornos/Topins? Personalizalo como mas te guste!!</p>
<input type="checkbox" id="3-leches" name="3-leches" value="3-leches">
<label for="3-leches">3 leches</label><br>
<input type="checkbox" id="extra-betun" name="extra-betun" value="extra-betun">
<label for="extra-betun">Extra Betun</label><br>
<input type="checkbox" id="hershey" name="hershey" value="hershey">
<label for="hershey">Chispas Hershys</label><br>
<input type="checkbox" id="M&M" name="M&M" value="M&M">
<label for="M&M">M&M</label><br>
<input type="checkbox" id="Nueces" name="Nueces" value="Nueces">
<label for="Nueces">Nueces</label><br>
<input type="checkbox" id="Fruta-temporada" name="Fruta-temporada" value="Fruta-temporada">
<label for="Fruta-temporada">Fruta de temporada</label><br>
<input type="checkbox" id="fruta-almibar" name="fruta-almibar" value="fruta-almibar">
<label for="fruta-almibar">Fruta en almibar</label><br>
<input type="checkbox" id="mensaje" name="mensaje" value="mensaje">
<label for="mensaje">Mensaje de Felicitación</label><br>
<label for="nombre">Escribe tu dedicatoria:</label>
<input type="text" id="mensaje-felicitacion" name="mensaje-felicitacion" required size="35" placeholder="mensaje-felicitacion">
<br>
<br>
<br>
<label for="entrega">Fecha y hora de entrega</label>
<input type="datetime-local" name="entreda" id="entrega" required><br><br>
<label for="comentarios">Detalles o comentarios:</label>
<textarea id="comentarios" name="comentarios" rows="4" cols="50" maxlength="200" placeholder="escribe tu mensaje"></textarea><br><br>
<br>
<input type="reset">
<input type="submit">
</form>
</section>
<br>
<hr>
<footer>
<p>Felices de servirte. Horarios de atencion: Lunes a Sabado 9:00am a 9:00pm, Domingos cerramos y comemos pastel</p>
<p>Pasteles LaunchX. Midtown, Calle Colon 611. Guadalajara, Jalisco, México. Telefono: 3333333333</p>
<p>Todos los derechos reservados</p>
</footer>
</body>
</html>