-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstat.php
64 lines (56 loc) · 1.43 KB
/
stat.php
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
<?php include 'core/config.php'; ?>
<!DOCTYPE html>
<html lang="sh">
<?php include 'includes/mapincludes/head.php' ?>
<body>
<?php include 'includes/header.php' ?>
<!-- Heading -->
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-left">
<h1>Korisnik ID</h1>
</div>
</div>
</div>
<!-- Heading -->
<!-- Map Div -->
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<div id="map" class="map"></div>
</div>
<div class="col-md-6">
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>[email protected]</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Map Div -->
<?php include 'includes/footer.php' ?>
<?php include 'includes/mapincludes/scripts.php' ?>
</body>
</html>