2026.camp.carte/index.html

31 lines
993 B
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">
<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>
<camp-bidi-panel id="result-panel" ></camp-bidi-panel>
</body>
</html>