Sauvegarde initiale de l'application
This commit is contained in:
42
supervise.html
Normal file
42
supervise.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!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">
|
||||
<img id="user-avatar" src="" alt="Avatar" style="width: 50px; height: 50px; border-radius: 50%;">
|
||||
<h2 id="user-name">Nom : --</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>
|
||||
<div class="section small-section" id="section-bottom-right">
|
||||
<p>Section 3</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>
|
||||
Reference in New Issue
Block a user