-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>ParGent</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="Favicon.png">
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet2">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/qrcode.min.js"></script>
</head>
<body>
<div class="header">
<a href="index.html"><img src="logo.png" alt="Logo" class="logo"></a>
<h2>ParGent: parkeerplaatsen in Gent</h2>
</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>
<script src="script.js"></script>
<div class="footer">
Copyright © 2023 Antonio & Adam
</div>
</body>
</html>