-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPastelero.html
98 lines (98 loc) · 2.64 KB
/
Pastelero.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>
<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>Document</title>
</head>
<body>
<h2>Inventario</h2>
<table>
<tr>
<th>Sabores</th>
<th></th>
<th>Pasteles Disponibles</th>
</tr>
<tr>
<td>Vainilla</td>
<td>..........................................................</td>
<td>15</td>
</tr>
<tr>
<td>Chocolate</td>
<td>..........................................................</td>
<td>15</td>
</tr>
<tr>
<td>Tres Leches</td>
<td>..........................................................</td>
<td>15</td>
</tr>
<tr>
<td>Oreo</td>
<td>..........................................................</td>
<td>10</td>
</tr>
<tr>
<td>Cajeta</td>
<td>..........................................................</td>
<td>10</td>
</tr>
</table>
<br><br>
<table>
<tr>
<th>Adornos</th>
<th></th>
<th>Pasteles Disponibles</th>
</tr>
<tr>
<td>Flores</td>
<td>..........................................................</td>
<td>15</td>
</tr>
<tr>
<td>Fruta</td>
<td>..........................................................</td>
<td>20</td>
</tr>
<tr>
<td>Figuras Betun</td>
<td>..........................................................</td>
<td>20</td>
</tr>
</table>
<br><br>
<h2>Pedidos</h2>
<table>
<tr>
<th>No</th>
<th>Nombre</th>
<th>Telefono</th>
<th>Email</th>
<th>Descripción</th>
<th>Sabores</th>
<th>Adornos</th>
</tr>
<tr>
<td>1</td>
<td>Pedro Ramos</td>
<td>5547896321</td>
<td>pedro.ramos@gmail.com</td>
<td>Pastel Blanco de dos pisos</td>
<td>Chocolate</td>
<td>Flores</td>
</tr>
<tr>
<td>2</td>
<td>Lucia Guerrero</td>
<td>5545687229</td>
<td>lucia.guerr@gmail.com</td>
<td>Pastel Rosa de un piso</td>
<td>vainilla/Cajeta</td>
<td>Flores/Fruta</td>
</tr>
</table>
</body>
</html>