-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
94 lines (87 loc) · 2.84 KB
/
dashboard.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
<!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">
<link rel="stylesheet" href="/styles/global_style.css">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,100;1,300&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/png" sizes="32x32" href="./Img/favicon-32x32.png">
<link rel="stylesheet" href="./dashboard/dashboard.css">
<link rel="stylesheet" href="./dashboard/sidebar.css">
<title>Dashboard</title>
</head>
<body>
<div class='main_container'>
<div class='sidebar'>
<div>
<h3>DASHBOARD</h3>
<h4>UserName</h4>
</div>
<h5>ADMIN</h5>
<ul>
<li class='current'>
<img src="/Img/dashboard/shoppingcart.png" alt="product icon">Products
</li>
<li class='current' >
<a href="/dashboard/sections.html"><img src="/Img/dashboard/todo.png" alt="add product icon">Sections</a>
</li>
<li>
<a href="./dashboard/orders.html"> <img src="/Img/dashboard/userIcon.png" alt="user icon">Orders</a>
</li>
<li>
<a href="/dashboard/createproduct.html"> <img src="/Img/dashboard/addIcon.png" alt="add product icon">Add Product</a>
</li>
<li>
<a href="./dashboard/createSection.html"> <img src="/Img/dashboard/addIcon.png" alt="add product icon">Add Section</a>
</li>
</ul>
<h5>SETTINGS</h5>
<ul>
<li >
<a href=""><img src="/Img/dashboard/settingsIcon.png" alt="product icon">Log Out </a>
</li>
</ul>
</div>
<div class='noLoading' id="loading">
<img src="./Img/dashboard/loading.gif" alt="">
</div>
<div class='table_container'>
<table class="table" id='table'>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Nombre</th>
<th scope="col">Precio</th>
<th scope="col">Stock</th>
<th scope="col">Categoría</th>
<th scope="col">Rate</th>
<th scope="col">Novedad</th>
<th scope="col">Descuento</th>
<th scope="col">Opciones</th>
</tr>
</thead>
<tbody id='tbody'>
</tbody>
</table>
</div>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>¿ Eliminar producto ?</p>
<hr>
<button id='siBtn'>Si</button>
<button id='noBtn'>No</button>
</div>
</div>
<div class='alert' id='alert'>
<img src="/Img/markIcon.png" alt="markicon">
<p id='alert_msg'></p>
</div>
<script src="./dashboard/dashboard.js"></script>
</body>
</html>