-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (137 loc) · 6.91 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-icon.png">
<link rel="icon" type="image/png" href="img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Afwaj | Dashboard</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- CSS Files -->
<link href="css/material-dashboard.css?v=2.1.0" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<div class="wrapper ">
<div class="sidebar" data-color="green" data-background-color="white" data-image="img/sidebar-1.jpg">
<div class="logo">
<a href="index.html" class="simple-text logo-normal">
<img src="img/logo.png" alt="Afwaj Logo">
</a>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="material-icons">dashboard</i>
<p>Dashboard</p>
</a>
</li>
</ul>
<div class="chat-container">
<h3 class="heading bg-success">Groups Feed</h3>
<ul class="chatbox">
<li>
<h6 class="message-title">Mohamed needs an Emergency</h6>
<p>One of group got a coma, he is almost 60 years old</p>
</li>
<li>
<h6 class="message-title">Ayman needs an Emergency</h6>
<p>An old woman, got a Sunstroke</p>
</li>
<li>
<h6 class="message-title">Hussien found a Pilgrim</h6>
<p>He is from Group K-082</p>
</li>
<li>
<h6 class="message-title">Maher is reporting</h6>
<p>The EGY-439 Group has arrived safely</p>
</li>
</ul>
</div>
</div>
</div>
<div class="main-panel">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-transparent navbar-absolute fixed-top hidden-md">
<div class="container-fluid">
<div class="navbar-wrapper">
<a class="navbar-brand" href="#">Afwaj</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
</button>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<div class="container-fluid">
<!-- Map -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header card-header-success">
<h4 class="card-title mt-0">Live Monitoring</h4>
</div>
<div class="card-body">
<div id="map"></div>
</div>
</div>
</div>
</div>
<!-- Trips -->
<div class="trips row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover text-center">
<thead class="">
<tr class="text-white">
<th class="bg-dark" colspan="4">Basic Info</th>
<th class="bg-secondary" colspan="4">Hajj Group</th>
</tr>
<tr>
<th>#</th>
<th>From</th>
<th>To</th>
<th>Date</th>
<th>Name</th>
<th>Pilgrims</th>
<th>Status</th>
<th>Live</th>
</tr>
</thead>
<tbody class="trips-table"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Core JS Files -->
<script src="js/core/jquery.min.js" type="text/javascript"></script>
<script src="js/core/popper.min.js" type="text/javascript"></script>
<script src="js/core/bootstrap-material-design.min.js" type="text/javascript"></script>
<script src="js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Notifications Plugin -->
<script src="js/plugins/bootstrap-notify.js"></script>
<script src="js/material-dashboard.min.js"></script>
<!-- Google Maps Plugin -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLFFZ-B-IGhbpY45cuGfodRZvQmfPsHWU&callback=initMap"
async defer></script>
<!-- JS -->
<script src="js/app.js"></script>
</body>
</html>