-
Notifications
You must be signed in to change notification settings - Fork 1
/
1.managerPortal.html
97 lines (92 loc) · 3.35 KB
/
1.managerPortal.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
<!DOCTYPE html>
<header>Manager's Portal</header>
<head>
<link rel="stylesheet" href="1.managerPortal.css">
</head>
<body>
<div class="app">
<div class="immediate-menus">
<h1>Services</h1>
<p><br></p>
<a href="2.pending.html">
<div class="menu-1">
<div class="menu-1-top">
<div id="menu-1-icon"><img src="images/pending-icon.png" height="30px"></div>
<div id="menu-1-title"><h2 id="pending">Pending</h2></div>
</div>
<div class="menu-1-bottom">
<div id="menu-1-number">Number</div>
</div>
</div>
</a>
<a href="3.approved.html">
<div class="menu-2">
<div class="menu-2-top">
<div id="menu-2-icon"><img src="images/done-icon.png" height="30px"></div>
<div id="menu-2-title"><h2 id="approved">Approved</h2></div>
</div>
<div class="menu-2-bottom">
<div id="menu-2-number">Number</div>
</div>
</div></a>
<a href="4.declined.html">
<div class="menu-3">
<div class="menu-3-top">
<div id="menu-3-icon"><img src="images/decline-icon.png" height="30px"></div>
<div id="menu-3-title"><h2 id="declined">Declined</h2></div>
</div>
<div class="menu-3-bottom">
<div id="menu-3-number">Number</div>
</div>
</div>
</a>
</div>
<div class="latest-transactions">
<h1>Latest Orders<br></h1>
<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 19:38</td>
<td>00581</td>
<td>Giri</td>
<td>₹355</td>
<td>Completed</td>
</tr>
<tr>
<td>2022-07-11 17:22</td>
<td>00476</td>
<td>Chandu</td>
<td>₹172</td>
<td>Completed</td>
</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 21:01</td>
<td>00392</td>
<td>Vasanthi</td>
<td>₹429</td>
<td>Completed</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>
</div>
</body>