49 lines
1.9 KiB
HTML
49 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Supervision</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<link rel="stylesheet" href="static/css/supervise.css">
|
|
<style>
|
|
#map {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<!-- Section principale (à gauche) -->
|
|
<div class="section large-section" id="section-left">
|
|
<div id="map"></div>
|
|
</div>
|
|
|
|
<!-- Deux sections à droite -->
|
|
<div class="section-container">
|
|
<div class="section small-section" id="section-top-right-baptiste">
|
|
<img id="user-avatar" src="" alt="Avatar" style="width: 50px; height: 50px; border-radius: 50%;">
|
|
<h2 id="user-name"> --</h2>
|
|
<p id="user-progression">Progression : --</p>
|
|
<p>Longitude : <span id="user-longitude">--</span></p>
|
|
<p>Latitude : <span id="user-latitude">--</span></p>
|
|
<p id="user-inactive">Inactif depuis : -- s</p>
|
|
</div>
|
|
<!-- Section pour Julien -->
|
|
<div class="section small-section" id="section-top-right-julien">
|
|
<img id="user-avatar-julien" src="" alt="Avatar Julien" style="width: 50px; height: 50px; border-radius: 50%;">
|
|
<h2 id="user-name-julien"> --</h2>
|
|
<p id="user-progression-julien">Progression : --</p>
|
|
<p>Longitude : <span id="user-longitude-julien">--</span></p>
|
|
<p>Latitude : <span id="user-latitude-julien">--</span></p>
|
|
<p id="user-inactive-julien">Inactif depuis : -- s</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
<script src="static/js/supervise.js"></script>
|
|
</body>
|
|
</html>
|