-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminPage.html
More file actions
106 lines (97 loc) · 3.51 KB
/
adminPage.html
File metadata and controls
106 lines (97 loc) · 3.51 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SendIT | Courier Services | Sign up page</title>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Included CSS Files -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/pagesStyle.css" type="text/css">
</head>
<body>
<header>
<nav class="sit-nav">
<ul class="sub-nav">
<li id="admin-page-id" class="active"><a href="adminPage.html">Admin Page</a></li>
<li><a href="signup.html" >Sign Up</a></li>
<li><a href="signin.html" >Sign In</a></li>
<li>
<form method="POST" action="" class="search" id="search">
<input type="text" placeholder="Search..." />
<button type="submit" class="searchBtn" >Search
</button>
</form>
</li>
</ul>
</nav>
<a href="index.html" class="header-brand"><img src="images/sendItLogo.png" alt="SendIT"></a>
<nav class="sit-nav2">
<ul class="main-nav">
<li><a href="index.html">HOME</a></li>
<li><a href="parcels.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main class="summary-views">
<section class="display-parcels-view">
<div class="parcels-view">
<h3>Parcels Summary</h3><br>
<label>Please note, you can change location details if a parcel delivery order status is not delivered...</label><br><br>
<table>
<thead>
<th>Collection Date</th>
<th>Parcel Number</th>
<th>Collection Address</th>
<th>Delivery Address</th>
<th>Charge Fee</th>
<th>Status</th>
<th>Location</th>
<th>Change Status</th>
</thead>
<tbody>
<tr>
<td>12/11/2018</td>
<td> 3 </td>
<td>No 2, Kaduna Road, Kaduna, Kaduna</td>
<td>Behind Police Station, Lugbe, Abuja, FCT</td>
<td>N1000</td>
<td>On Transit</td>
<td>Zuba, Abuja FCT</td>
<td><a href="changeLocation.html">Change Status and Location</a></td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<footer>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="shipping.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
<div class="footer-sm">
<a href="#">
<img src="images/youtube-logo.png" alt="youtube icon">
</a>
<a href="#">
<img src="images/facebook-logo.png" alt="facebook icon">
</a>
<a href="#">
<img src="images/twitter-logo.png" alt="twitter icon">
</a>
</div>
<section class="footer-bottom">
<div>
<label>Copyright © SendIT 2018</label>
</div>
</section>
</footer>
<!-- Scripts -->
<script src="scripts/parcelSummary.js"></script>
</body>
</html>