-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (35 loc) · 1.36 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
<!DOCTYPE html>
<html lang="fr" style="width:100%;height: 100%">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- <link rel="stylesheet" href="static/css/bootstrap.min.css"> -->
<title>Previsecours</title>
<link rel="icon" href="static/favicon.png">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.1.0/dist/leaflet.css" />
</head>
<body style="width:100%;height: 100%; margin:0px">
<div id="previsecoursMainApp">
<div style="text-align: center;position: fixed; left: 0;right:0;top:20%;">
<img src="static/boulecristal.svg" alt="predire le futur">
<br>
<br>
<img src="static/MI_mgmsic.png" alt="predire le futur">
<div style="display:none;" 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>
<script src="/dist/build.js"></script>
</body>
</html>
<script>
setTimeout(function(){
if(document.getElementById("infoNotWorking")){
document.getElementById("infoNotWorking").style.display = "block";
}
}, 8000);
</script>