-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Parking.Gent</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="Favicon.png">
<script src="https://cdn.jsdelivr.net/npm/qrcodejs@1.0.0/qrcode.min.js"></script>
</head>
<body>
<div class="header">
</div>
<div class="content">
<button id="findParking">Zoek in mijn buurt</button>
<input type="text" id="addressInput" placeholder="Voer een adres in" class="address-input">
<button id="findParkingByAddress">Zoek op adres</button>
<button id="backButton" style="display: none;">Terug</button>
<div id="loadingSpinner" style="display: none;"></div>
<div id="parkingList"></div>
</div>
<div class="section_our_solution">
<div class="row">
<div class="our_solution_category">
<!-- Card 1 -->
<div class="cards_box">
<div class="solution_card">
<div class="hover_color_bubble"></div>
<div class="solu_title">
<h3>Bezetting binnen LEZ</h3>
</div>
<div class="progress-bar" id="progress-bar-lez">
<div class="progress" style="width: 0%;"></div>
</div>
<div class="solu_description">
<p class="total_capacity">Total capacity: </p>
<p class="available_capacity">Available capacity: </p>
<p class="last_updated">Last updated: </p>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="cards_box">
<div class="solution_card">
<div class="hover_color_bubble"></div>
<div class="solu_title">
<h3>Bezetting buiten LEZ</h3>
</div>
<div class="progress-bar" id="progress-bar-nolez">
<div class="progress" style="width: 0%;"></div>
</div>
<div class="solu_description">
<p class="total_capacity2">Total capacity: </p>
<p class="available_capacity2">Available capacity: </p>
<p class="last_updated2">Last updated: </p>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="cards_box">
<div class="solution_card">
<div class="hover_color_bubble"></div>
<div class="solu_title">
<h3>Bezetting P+R's</h3>
</div>
<div class="progress-bar" id="progress-bar-pr">
<div class="progress" style="width: 0%;"></div>
</div>
<div class="solu_description">
<p class="total_capacity3">Total capacity: </p>
<p class="available_capacity3">Available capacity: </p>
<p class="last_updated3">Last updated: </p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
<div class="footer">
Copyright © <span id="year"></span> by
<a href="/~https://github.com/Maysker" target="_blank" rel="noopener noreferrer">Adam Gazdiev</a>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>