-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock-orders.html
120 lines (120 loc) · 3.36 KB
/
stock-orders.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="es">
<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" />
<link rel="stylesheet" href="css/stock-orders.css" />
<title>Ordenes - Stock</title>
<link rel="icon" href="assets/favicon.png" />
</head>
<body>
<nav>
<div class="nav-bar">
<a href="index.html"
><img class="logo" src="assets/Dulcakes.png" alt="logo dulckaes"
/></a>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="index.html#flavors">Sabores</a></li>
<li><a href="index.html#decorations">Decoraciones</a></li>
</ul>
</div>
</nav>
<h1>Bienvenido Admin</h1>
<section class="boards-container">
<article class="stock-flavors" class="center-boards">
<h2 class="title-flavors">Stock Sabores</h2>
<table class="flavors">
<tr>
<th>Sede</th>
<th>Vainilla</th>
<th>Frutos Rojos</th>
<th>Chocolate</th>
</tr>
<tr>
<td>Zipaquirá</td>
<td>25</td>
<td>12</td>
<td>8</td>
</tr>
<tr>
<td>Chía</td>
<td>20</td>
<td>14</td>
<td>10</td>
</tr>
</table>
</article>
<article class="stock-decorations">
<h2 class="titles-decorations">Stock Decoraciones</h2>
<table class="decorations">
<tr>
<th>Sede</th>
<th>Chantilly</th>
<th>Jalea</th>
<th>Tropical</th>
<th>Fondant</th>
<th>Florales</th>
<th>Glaseado</th>
</tr>
<tr>
<td>Zipaquirá</td>
<td>20</td>
<td>14</td>
<td>22</td>
<td>12</td>
<td>27</td>
<td>18</td>
</tr>
<tr>
<td>Chía</td>
<td>18</td>
<td>24</td>
<td>25</td>
<td>21</td>
<td>20</td>
<td>19</td>
</tr>
</table>
</article>
<article class="orders-container">
<h2 class="title-order">Ordenes</h2>
<table class="title-order">
<tr>
<th>Nombre</th>
<th>Telefono</th>
<th>Email</th>
<th>Sabores</th>
<th>Decoraciones</th>
<th>Descripción</th>
</tr>
<tr>
<td>Carlos Rodriguez</td>
<td>3123456789</td>
<td>carlos.rodriguez@gmail.com</td>
<td>Vainilla</td>
<td>Tropical</td>
<td>Pastel de tres pisos para 45 personas</td>
</tr>
<tr>
<td>Maria Gonzales</td>
<td>3123445297</td>
<td>maria.gonzales@gmail.com</td>
<td>Chocolate</td>
<td>Fondant</td>
<td>Pastel de dos pisos para 30 personas</td>
</tr>
<tr>
<td>Cristian Robledo</td>
<td>3123451346</td>
<td>critian.ribera@gmail.com</td>
<td>Frutos Rojos</td>
<td>Jalea</td>
<td>Pastel de un pisos para 20 personas</td>
</tr>
</table>
</article>
</section>
</body>
</html>