-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 2.51 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
<!-- This page is the starting point of the website -->
<html>
<head>
<title>Travel Planer</title>
<link rel="icon" type="image/x-icon" href="images/TP-Icon.png">
<script src="libraries/jquery.min.js"></script>
<script src="libraries/bootstrap.bundle.min.js"></script>
<link href="libraries/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css">
<script src="libraries/graphology.min.js"></script>
<script src='https://cdn.jsdelivr.net/npm/vanillajs-datepicker@1.1.4/dist/js/datepicker-full.min.js'></script>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/vanillajs-datepicker@1.1.4/dist/css/datepicker.min.css'>
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/data.js" defer></script>
<script src="scripts/view.js" defer></script>
<script src="scripts/random_logic.js" defer></script>
<script src="scripts/controller.js" defer></script>
<script src="scripts/main.js" defer></script>
<script>
$(document).ready(async () => {
View.initView();
View.loadDatePicker();
await initApp();
View.readyToStart();
})
</script>
</head>
<body>
<div class="card">
<div class="card-body welcome-card">
<h1 class="travel-planifier-title">Bienvenue sur Travel Planner !</h1>
<p class="fs-4">Planifie ton voyage dans Namur sans te prendre la tête en <strong>quelques clics</strong> ! <br>
Il te suffit de choisir dans <strong>une <em>infinité</em> d'excursions</strong> celle qui te fait le plus envie, et te voilà avec une journée bien remplie sans te soucier de l'itinéraire ! <br>
Et n'oublie pas de nous faire ton retour pour améliorer les prochaines recommendations !</p>
<div>
<p class="fs-4">Quand est-ce qu'on part ?</p>
<div class="input-group mb-4 date-picker">
<i class="bi bi-calendar-date input-group-text"></i>
<input id="datePickerInput" type="text" class="datepicker_input form-control" required>
</div>
</div>
<button id="startButton" class="btn btn-lg btn-primary start-button" disabled onclick="Controller.start()" role="button">
<span id="buttonText" hidden>Créer une excursion originale !</span>
<span id="buttonSpinner" class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
</button>
</div>
</div>
</body>
</html>