37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Carte Interhack Camp 2026</title>
|
|
<link rel="stylesheet" href="./js/lib/leaflet/leaflet.css">
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
<link rel="stylesheet" href="./css/widgets.css">
|
|
<script type="module" src="./js/index.js"></script>
|
|
<script type="module" src="./js/components/bidi-panel.js"></script>
|
|
</head>
|
|
<body>
|
|
<header id="main-header">
|
|
<img src="./logo.png" alt="Interhack Camp" id="logo">
|
|
</header>
|
|
|
|
<section id="map"></section>
|
|
|
|
<hr>
|
|
|
|
<form id="search-section">
|
|
<label for="search-area-query">Rechercher une zone</label><br/>
|
|
<input type="search" name="query" id="search-area-query" autocomplete="off" />
|
|
<button title="Rechercher" >
|
|
<img src="icons/search.svg" alt="Icone de loupe"/>
|
|
</button>
|
|
</form>
|
|
|
|
<dialog id="result-panel-dialog">
|
|
<button title="Fermer" id="close-result-panel-btn">
|
|
<img src="./icons/close.svg" alt="Icone de croix">
|
|
</button>
|
|
<camp-bidi-panel id="result-panel" ></camp-bidi-panel>
|
|
</dialog>
|
|
</body>
|
|
</html>
|