SabradouMap/index.php

25 lines
769 B
PHP
Raw Normal View History

2023-07-11 18:03:40 +02:00
<?php include("core.php"); ?>
2023-07-10 19:36:11 +02:00
<!DOCTYPE html>
<html>
2023-07-11 18:03:40 +02:00
2023-07-10 19:36:11 +02:00
<head>
2023-07-11 14:08:23 +02:00
<title>Formulaire de sélection</title>
2023-07-11 18:03:40 +02:00
<link rel="stylesheet" href="style.css" />
2023-07-10 19:36:11 +02:00
</head>
2023-07-11 18:03:40 +02:00
2023-07-10 19:36:11 +02:00
<body>
2023-07-11 18:03:40 +02:00
<div class="container">
<form class="form" action="map.php" method="GET">
<label for="calendrier-list">Sélectionnez une date :</label>
<select name="calendrier" id="calendrier-list">
<?php $calendrier = getCalendrier(); ?>
<?php foreach ($calendrier as $item): ?>
<option value="<?php echo $item['url']; ?>"><?php echo $item['node']; ?></option>
<?php endforeach; ?>
</select>
<input type="submit" value="Afficher sur la carte">
</form>
</div>
2023-07-10 19:36:11 +02:00
</body>
2023-07-11 18:03:40 +02:00
2023-07-11 14:08:23 +02:00
</html>