-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
107 lines (96 loc) · 3.99 KB
/
admin.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
<!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>ReAlShop</title>
<link rel="stylesheet" href="./styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<header>
<nav class="navbar">
<img width="55px" height="55px" class="imgnavbar" src="./assets/imagenes/LogoNegro.jpg" alt="">
<a href="./index.html">Home</a>
</nav>
</header>
<div>
<div class="container">
<div>
<h1>Pedidos</h1>
<button id="Agregar" type="button" class="btn btn-outline-dark float-end">Agregar nuevo</button>
</div>
<br>
<hr>
<div class="row my-5">
<table class="table">
<thead>
<tr>
<th scope="col">Fecha de entrega</th>
<th scope="col">Tipo</th>
<th scope="col">Descripción</th>
<th scope="col">Contacto</th>
<th scope="col">Costo/Anticipo</th>
<th scope="col">Acciones</th>
</tr>
</thead>
<tbody id="filas">
<tr>
<th scope="row"></th>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
<div class="btn-group me-2" role="group" aria-label="Second group">
<button type="button" class="btn btn-secondary">Editar</button>
<button type="button" class="btn btn-secondary borrar">Borrar</button>
</div>
</td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td colspan="2"></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<footer>
<div class="main">
<div class="secondary">
<h4 class="secondarytext">SÍGUENOS</h4>
<a href="https://www.instagram.com/real.cadeaux/">Instagram</a> <br>
<a href="#/">Facebook</a> <br>
<a href="#">Youtube</a> <br>
<a href="#">Tiktok</a>
</div>
<div class="secondary faqs">
<h4 class="secondarytext">ATENCIÓN AL CLIENTE</h4>
<a href="#">FAQ´S</a> <br>
<a href="#">Escríbenos</a> <br>
<a href="#">Envíos y devoluciones</a>
</div>
<div class="secondary">
<h4 class="secondarytext">DISEÑADO POR</h4>
<a href="#">Rebecca AlMe</a>
</div>
</div>
</footer>
<script src="./index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>