-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (47 loc) · 1.38 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Cartographie accidents et verbalisation</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="static/favicon.svg" />
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<style>
#welcomeMessage {
text-align: center;
position: fixed;
left: 0;
right: 0;
top: 300px;
}
#infoNotWorking {
display: none;
}
</style>
</head>
<body>
<div id="app">
<div id="welcomeMessage">
<img src="static/cartav.svg" alt="Cartographie accidents - verbalisations">
<br>
<br>
<div id="infoNotWorking">
Si vous avez le temps de lire ce message, cela signifie probablement que votre navigateur n'est pas compatible...
<br>
Pour profiter de l'outil, il vous faudra le mettre à jour (Firefox 45 ou supérieur).
</div>
</div>
<router-view></router-view>
</div>
<!-- built files will be auto injected -->
</body>
<script>
setTimeout(function(){
document.getElementById("infoNotWorking").style.display = "block";
if (document.getElementById("appl")) {
let infoNode = document.getElementById('welcomeMessage');
infoNode.parentNode.removeChild(infoNode);
}
}, 8000);
</script>
</html>