-
Notifications
You must be signed in to change notification settings - Fork 1
/
4.declined.html
38 lines (38 loc) · 1.17 KB
/
4.declined.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
<!DOCTYPE html>
<header>Declined Orders</header>
<head>
<link rel="stylesheet" href="4.declined.css">
</head>
<body>
<nav class="topnav">
<a href="1.managerPortal.html">Home</a>
<a href="2.pending.html">Pending</a>
<a href="3.approved.html">Approved</a>
<a class="active" href="4.declined.html">Declined</a>
</nav>
<div class="app">
<table style="width:74%">
<tr>
<th style="width:10%">Date</th>
<th style="width:8%">Order id</th>
<th style="width:15%">Customer Name</th>
<th style="width:8%">Total</th>
<th style="width:5%">Status</th>
</tr>
<tr>
<td>2022-07-11 13:09</td>
<td>00409</td>
<td>Soumyadeep</td>
<td>₹699</td>
<td>Declined</td>
</tr>
<tr>
<td>2022-07-10 20:49</td>
<td>00301</td>
<td>Shashank</td>
<td>₹399</td>
<td>Declined</td>
</tr>
</table>
</div>
</body>