-
Notifications
You must be signed in to change notification settings - Fork 3
/
admindashboard.html
128 lines (122 loc) · 4.03 KB
/
admindashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Admin Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href=" https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900 "
rel="stylesheet "
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="css/style.css"
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="css/mediaqueries.css"
/>
</head>
<body>
<div id="cssmenu"><ul id="navigationlinks"></ul></div>
<br />
<div class="dashboard">
<section class="dashboard__content">
<div class="history__container ">
<div class="kevooh">
<div class="sendit-mainn"><p>Placed Parcel orders</p></div>
</div>
<br />
<div class="rows">
<div class="history__item velda_header">Customer Name</div>
<div class="history__item velda_header">Destination</div>
<div class="history__item velda_header ">From</div>
<div class="history__item velda_header ">weight(KGS)</div>
<div class="history__item velda_header ">current status</div>
<div class="history__item velda_header ">Edit</div>
</div>
</div>
<div id="row_data" class="row-data"></div>
</section>
</div>
<footer>
<div class="wor">
<div class="one">
<ul class="footer-nav">
<li><a href="#">About us</a></li>
<li><a href="#">Our locations</a></li>
<li><a href="#">Our Contacts</a></li>
</ul>
</div>
<div class="wor">
<ul class="social">
<li>
<a href="#"
><i class="fa fa-facebook-official" aria-hidden="true"></i
></a>
</li>
<li>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li>
<a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a>
</li>
<li>
<a href="#"
><i class="fa fa-google-plus" aria-hidden="true"></i
></a>
</li>
</ul>
</div>
<br />
</div>
<div class="wor">
<p class="k">Copyright ©2018 by Kelvin Onkundi Ndemo</p>
</div>
</footer>
<div class="modal-overlay closed" id="modal-overlay"></div>
<div class="modal closed" id="modal">
<button class="close-button" id="close-button">X</button>
<div class="modal-guts">
<h1>Update parcel</h1>
<div id="alert" role="alert"></div>
<form
id="admineditform"
style="display: flex; justify-content:space-around"
>
<div class="form-group">
<label for="location">Present Location</label><br />
<select class="form-control" id="adminlocation">
<option value="Kakamega"> Kakamega </option>
<option value="Keroka"> Keroka </option>
<option value="Mombasa">
<p class="form_input">Mombasa</p>
</option>
</select>
</div>
<div class="form-group">
<label for="Current Status">Current Status</label><br />
<select class="form-control" id="adminstatus">
<option value="Pending"> Pending </option>
<option value="completed"> Complete </option>
<option value="declined"> Decline </option>
<option value="accepted"> Accept </option>
<option value="In Transit"> In Transit </option>
</select>
</div>
</form>
</div>
</div>
<script src="js/index.js"></script>
<script src="js/admin/index.js"></script>
</body>
</html>