forked from tutrongtien1996/Admin-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
98 lines (90 loc) · 4.1 KB
/
Copy pathorder.html
File metadata and controls
98 lines (90 loc) · 4.1 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
<!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, maximum-scale=1.0, user-scalable=0">
<title>ZEOPOS | Orders</title>
<link rel="icon" href="/img/zeopos_favicon.png">
<link rel="apple-touch-icon" href="/img/zeopos_favicon.png">
<link rel="manifest" href="/data/manifest.json">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="./assets/css/index.css">
<link rel="stylesheet" href="./assets/css/order.css">
<link rel="stylesheet" href="node_modules/js-datepicker/dist/datepicker.min.css">
<script src="./node_modules/js-datepicker/dist/datepicker.min.js"></script>
<script src="./node_modules/axios/dist/axios.js"></script>
<script src="https://code.jquery.com/jquery-3.6.3.js" integrity="sha256-nQLuAZGRRcILA+6dMBOvcRh5Pe310sBpanc6+QBmyVM=" crossorigin="anonymous"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</head>
</head>
<body>
<div class="container_custom">
<div class="toggle active">
<ion-icon name="menu-outline"></ion-icon>
</div>
<div class="viewProfile">
<p>Nam Anh</p>
<p><a href="/company.html">Setting</a></p>
<p class="logout">Logout</p>
</div>
<div class="navigation active">
<ul id="menu">
</ul>
<div class="profile">
<ion-icon class="avatar" name="person-circle-outline"></ion-icon>
</div>
</div>
<!-- main -->
<div class="main active">
<div class="details">
<div class="recentOrders">
<div class="cardHeaders">
<h2>Recent Orders</h2>
<div>
<span>From:</span> <input type="date" class="date startDate" placeholder="Start Date">
<span>To:</span> <input type="date" class="date endDate" placeholder="End Date">
<button id="searchDates">Search</button>
</div>
</div>
<div class="table">
<table>
<thead>
<tr>
<td>Date</td>
<td>Name</td>
<td style="text-align: right;">Price</td>
<td>Payment</td>
<td>Status</td>
<td>Action</td>
</tr>
</thead>
<tbody id="list_order">
</tbody>
</table>
</div>
<div class="listBtn w-100 pages">
<div class="total d-flex justify-content-between w-50">
<h6>Total</h6>
<h6 class="pe-2">30031238123</h6>
</div>
<div><ul></ul></div>
</div>
</div>
</div>
</div>
<div class="container_popup">
<div class="popup_content">
</div>
</div>
</div>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<script src="./node_modules/tienformater/tienformater,js"></script>
<script src="js/utils/popup.js"></script>
<script src="./js/entities/config.js"></script>
<script src="js/app.js" type="module"></script>
<script src="js/presenters/orderPresenter.js" type="module"></script>
</body>
</html>