-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (92 loc) · 1.74 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>AutoMe template</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" type="text/css" />
</head>
<body class="body">
<!-- Header -->
<header class="theme">
<div>
<span>AutoMe</span>
</div>
<span>bookings</span>
<span>demand</span>
<span>supply</span>
<span>forecast</span>
<span>sos</span>
<span>user-name</span>
</header>
<!-- Cards -->
<section class="card theme">
<div>
<div>
<p>WEEKLY REVENUE</p>
<p>750/vehicle/week</p>
</div>
</div>
</section>
<section class="card theme">
<p>BOOKINGS</p>
<div>
<h3>2</h3>
<p>
cancelled
</p>
</div>
<div>
<h3>12</h3>
<p>
total
</p>
</div>
</section>
<!-- Table -->
<table class="theme">
<thead>
<tr>
<th>
Id
</th>
<th>
Pickup Zone
</th>
<th>
Drop Zone
</th>
<th>
Status
</th>
<th>
Driver Assigned
</th>
<th>
Vehicle Assigned
</th>
</tr>
</thead>
<tbody>
<tr>
<td>214</td>
<td>
Ashok Tower
</td>
<td>
BKC
</td>
<td>
started
</td>
<td>
Arun
</td>
<td>
KA 01 YU 6734
</td>
</tr>
</tbody>
</table>
</body>
</html>