-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
52 lines (50 loc) · 1.94 KB
/
admin.html
File metadata and controls
52 lines (50 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css">
<style>
select{
display: inline-block !important;
}
</style>
<title>CCL PROJECT</title>
</head>
<body>
<nav class="green accent-4">
<div class="nav-wrapper">
<a href="CC.html" class="brand-logo m-l-2">
Samsung Store
</a>
</div>
</nav>
<br>
<div class="container">
<br><br>
<table id="tableAdmin">
<thead>
<tr>
<th> </th>
<th>Id</th>
<th>Order</th>
<th>Date</th>
<th>Client</th>
<th>Payment Method</th>
<th>Total</th>
</tr>
</thead>
</table>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.6/dist/sweetalert2.all.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase.js"></script>
<script src="https://kit.fontawesome.com/20a6fb53f6.js" crossorigin="anonymous"></script>
<script src="admin.js"></script>
</body>
</html>