-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2.pending.html
78 lines (76 loc) · 3.22 KB
/
2.pending.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
<!DOCTYPE html>
<header>Pending Orders</header>
<head>
<link rel="stylesheet" href="2.pending.css">
</head>
<body>
<nav class="topnav">
<a href="1.managerPortal.html">Home</a>
<a class="active" href="2.pending.html">Pending</a>
<a href="3.approved.html">Approved</a>
<a href="4.declined.html">Declined</a>
</nav>
<div class="app">
<div class="pending-orders">
<table style="width:74%">
<tr>
<th style="width:10%">Time elapsed</th>
<th style="width:8%">Order id</th>
<th style="width:15%">Order Items</th>
<th style="width:8%">Total</th>
<th style="width:8%">Action</th>
</tr>
<tr>
<td>53s</td>
<td>00581</td>
<td>2xChicken Biryani, 3xRaita, Mushroom Fried Rice, Chicken Mughlai, Coke, Desserts</td>
<td>₹355</td>
<td>
<button type="button" id="button-accept">Accept</button>
<button type="button" id="button-decline">Decline</button>
</td>
</tr>
<tr>
<td>3min 20s</td>
<td>00476</td>
<td>2xChicken Biryani, 3xRaita, Mushroom Fried Rice, Chicken Mughlai, Coke, Desserts</td>
<td>₹172</td>
<td>
<button type="button" id="button-accept">Accept</button>
<button type="button" id="button-decline">Decline</button>
</td>
</tr>
<tr>
<td>4min 58s</td>
<td>00409</td>
<td>2xChicken Biryani, 3xRaita, Mushroom Fried Rice, Chicken Mughlai, Coke, Desserts</td>
<td>₹699</td>
<td>
<button type="button" id="button-accept">Accept</button>
<button type="button" id="button-decline">Decline</button>
</td>
</tr>
<tr>
<td>27min 13s</td>
<td>00392</td>
<td>2xChicken Biryani, 3xRaita, Mushroom Fried Rice, Chicken Mughlai, Coke, Desserts</td>
<td>₹429</td>
<td>
<button type="button" id="button-accept">Accept</button>
<button type="button" id="button-decline">Decline</button>
</td>
</tr>
<tr>
<td>1hr 15min</td>
<td>00301</td>
<td>2xChicken Biryani, 3xRaita, Mushroom Fried Rice, Chicken Mughlai, Coke, Desserts</td>
<td>₹399</td>
<td>
<button type="button" id="button-accept">Accept</button>
<button type="button" id="button-decline">Decline</button>
</td>
</tr>
</table>
</div>
</div>
</body>