-
Notifications
You must be signed in to change notification settings - Fork 0
/
pedidos.html
98 lines (87 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<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>Administrador</title>
</head>
<body>
<nav>
<img
class="logo"
src="images/logo.png"
alt="logo pasteleria vida"
/>
<ul class="nav-bar">
<li><a href="index.html" target="_blank">Inicio</a></li>
<li><a href="administrador.html" target="_blank">Administrador</a></li>
</ul>
</nav>
<h1>Pedidos</h1>
<section>
<label for="nombre">Nombre</label>
<br>
<input type="text" id="nombre" placeholder="Nombre completo">
<br>
<label for="telefono">Telefono</label>
<br>
<input type="tel" id="telefono" placeholder="Numero de telefono">
<br>
<label for="correo">Correo Electronico</label>
<br>
<input type="email" id="telefono" placeholder="Correo">
<br>
<br>
</section>
<section>
<form>
<label for="tipo">Tipo de pastel</label>
<br>
<ul>
<input type="checkbox" id="boda" name="boda">
<label for="boda">Pastel de Boda</label>
<br>
<input type="checkbox" id="cumpleaños" name="cumpleaños">
<label for="cumpleaños">Pastel de Cumpleaños</label>
<br>
<input type="checkbox" id="especial" name="especial">
<label for="especial">Pastel para ocación especial</label>
</ul>
<br>
<label for="numero">Numero de personas</label>
<br>
<ul>
<input type="checkbox" id="20" name="20">
<label for="20">20 Personas</label>
<br>
<input type="checkbox" id="30" name="30">
<label for="30">30 Personas</label>
<br>
<input type="checkbox" id="50" name="50">
<label for="50">50 Personas</label>
<br>
<input type="checkbox" id="100" name="100">
<label for="100">100 Personas</label>
</ul>
<br>
<label for="decoracionj">Tipo de decoracion</label>
<br>
<ul>
<input type="checkbox" id="fond" name="fond">
<label for="fond">Decoracion en Fondant</label>
<br>
<input type="checkbox" id="mer" name="mer">
<label for="mer">Decoracion en Crema Chantilli</label>
<br>
<br>
<input type="submit" value="Cotiza">
</form>
</section>
<footer>
<h3>Pasteleria Vida todos los derechos reservados</h3>
<h3>Tel. 963 161 61 22 Barrio La Esmeralda, Frontera Comalapa, Chiapas</h3>
</footer>
</body>
</html>