-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdministrator.html
More file actions
150 lines (94 loc) · 3.26 KB
/
Administrator.html
File metadata and controls
150 lines (94 loc) · 3.26 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@200;700&display=swap" rel="stylesheet">
<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>Pasteles</title>
<style>
@font-face {
font-family: 'Nunito', serif;
src: url();
}
.user-style
{
font-family: 'Nunito', serif;
margin-right: 15px;
font-size: 30px;
text-align: right;
}
.custom-style
{
font-family: 'Nunito', serif;
margin-left: 15px;
font-size: 40px;
}
#container {height: 100%; width:100%; font-size: 0;}
#left, #right {display: inline-block; *display: inline; zoom: 1; vertical-align: top; font-size: 12px;}
#left {width: 40%;}
#right {width: 30%;}
</style>
</head>
<body>
<div id="header" style="background-color: #ffcdb0;">
<img src="Images/Logo.png" alt="Logo de Pastelería Dorantes" width="300px">
<div id="left">
<h1 class="custom-style">Inventario</h1>
</div>
<div id="right">
<h1 class="user-style">Admin</h1>
</div>
</div>
<div id="cake-div">
<h2>Sabores</h2>
<p>Chocolate | Cantidad disponible: 15 kg</p>
<p>Fresa | Cantidad disponible: 10 kg</p>
</div>
<hr>
<div id="decoration-div">
<h2>Adornos</h2>
<p>Fondant | Cantidad disponible: 18 kg</p>
<p>Texto | Obleas disponibles: 120</p>
</div>
<hr>
<div id="orders">
<table class="default">
<tr>
<th>ID de pedido</th>
<th>Descripción</th>
<th>Cliente</th>
<th>Estatus</th>
</tr>
<tr>
<td>263548</td>
<td>Pastel de chocolate</td>
<td>Daniela Ortiz</td>
<td>En espera</td>
</tr>
<tr>
<td>356894</td>
<td>Pastel de fresa</td>
<td>Miguel Santos</td>
<td>En preparación</td>
</tr>
<tr>
<td>361240</td>
<td>Pastel de vainilla</td>
<td>Vianey Pérez</td>
<td>En proceso de entrega</td>
</tr>
</table>
</div>
<input type="button" value="Atender pedido"/>
<hr>
<div id="info-div">
<h4>Pastelería Dorantes</h4>
<p>Teléfono: 9936484214</p>
<p>Dirección: Enrique Segoviano</p>
<p>Horarios de atención: lunes a sábado de 9 a. m. a 9 p. m.</p>
</div>
</body>
</html>