-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcustomer-order.html
137 lines (136 loc) · 5.83 KB
/
customer-order.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<!-- MDB -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.10.2/mdb.min.css"
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>Greendeliver</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/vendor-orders.css">
<script src="https://kit.fontawesome.com/b695d1a6b6.js" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/b695d1a6b6.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container-fluid">
<!-- <div class="container"> -->
<h2>ORDERS</h2>
<div class="row">
<div class="col-md-2 side d-flex-justify-content-md-center">
<div class="photo">
<i class="fa-solid fa-user-large"></i>
<input type="submit" value="Upload Image" name="submit">
<input type="file" name="fileToUpload" id="fileToUpload">
</div>
<input type="text" placeholder="Full Name" name="first" id="name">
<input type="number" placeholder="ID Number" name="identify" id="person">
<br>
<br>
<a href="index.html" class="btn btn-primary">Log Out</a>
</div>
<div class="col-md-10 other d-flex-justify-content-md-center">
<nav class="nav">
<a href="#" class="nav-item nav-link active">ALL ORDERS</a>
<!-- <a href="#" class="nav-item nav-link">On the Way</a> -->
<!-- <a href="#" class="nav-item nav-link">Sent</a> -->
<!-- <a href="#" class="nav-item nav-link">Delivered</a> -->
<!-- <a href="#" class="nav-item nav-link disabled" tabindex="-1">Menu</a> -->
</nav>
<div class="table-responsive">
<table class="table">
<h2>Delivered</h2>
<thead>
<tr>
<th scope="col">ORDER</th>
<!-- <th scope="col">CUSTOMERS'NAME</th> -->
<th scope="col">PRODUCTS</th>
<th scope="col">DATE</th>
<th scope="col">PRICE</th>
<th scope="col">STATUS</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">#0001</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>Delivered</td>
</tr>
<tr>
<th scope="row">#0002</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>Delivered</td>
</tr>
<tr>
<th scope="row">#0003</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>Delivered</td>
</tr>
<tr>
<th scope="row">#0004</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>Delivered</td>
</tr>
<tr>
<th scope="row">#0005</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>Delivered</td>
</tr>
</tbody>
<table class="table">
<h2>Pending Delivery</h2>
<thead>
<tr>
<th scope="col">ORDER</th>
<!-- <th scope="col">CUSTOMERS'NAME</th> -->
<th scope="col">ITEMS</th>
<th scope="col">DATE</th>
<th scope="col">PRICE</th>
<th scope="col">STATUS</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">#00012305</th>
<td>Sukuma,Mango</td>
<td>02-03-2022</td>
<td>Ksh.200</td>
<td>On the Way</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script src="./Js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- MDB -->
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.10.2/mdb.min.js"
></script>
</body>
</html>