-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (86 loc) · 4.24 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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FBI databank</title>
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
</head>
<body>
<div id="container" class="container-fluid">
<div class="row">
<div class="col">
<h1 class="logo text-center">
<a href="#" onclick="location.reload()"><img src="images/logo.png" width="100" height="100"></a>
<span>FBI-databank</span>
</h1>
</div>
</div>
<div class="row">
<div class="col">
<div class="table-responsive">
<table id="userTable" class="table table-dark shadow p-3 table-striped table-hover">
<thead>
<tr>
<th scope="col" class="d-none d-sm-table-cell">#</th>
<th scope="col">Afbeelding:</th>
<th scope="col">Voornaam:</th>
<th scope="col">Achternaam:</th>
<th scope="col" class="d-none d-sm-table-cell">Geslacht:</th>
<th scope="col" class="d-none d-sm-table-cell">Geboortedatum:</th>
<th scope="col">Woonplaats:</th>
<th scope="col">Land:</th>
<th scope="col" class="d-none d-sm-table-cell">Huidige locatie:</th>
</tr>
</thead>
<tbody id="tableOutput">
</tbody>
</table>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col">
<div class="form-row align-items-center justify-content-center">
<div class="col-auto my-1">
<label for="amount" class="col-form-label">Hoeveelheid resultaten:</label>
</div>
<div class="col-auto my-1">
<input type="number" name="amount" class="form-control form-control-sm" id="amount" min="1" max="99" maxlength="2" value="10">
</div>
<div class="col-auto my-1">
<label for="genderField" class="col-form-label">Geslacht:</label>
</div>
<div class="col-auto my-1">
<select id="genderField" name="genderField" class="form-control form-control-sm">
<option value=""></option>
<option value="male">Man</option>
<option value="female">Vrouw</option>
</select>
</div>
<div class="col-auto my-1">
<button id="generator" class="btn btn-primary">Geef resultaten weer</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col justify-content-center">
<h2>Crimineel-tracker</h2>
<div id="fullMap" class="shadow"></div>
</div>
</div>
</div>
<script src="javascript/main.js"></script>
<script src="javascript/classes/person.class.js"></script>
<script src="javascript/classes/retriever.class.js"></script>
</body>
</html>