SabradouMap/index.php
2023-07-11 18:28:08 +02:00

31 lines
971 B
PHP

<?php include("core.php"); ?>
<!DOCTYPE html>
<html>
<head>
<title>Formulaire de sélection</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header">
<H1> GÉOLOCALISATION DES BROCANTES RÉFÉRENCÉES</br>
SUR LE SITE <a href="https://www.sabradou.com/" target="_blank">SABRADOU.COM</a>
</H1>
</div>
<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="Localiser sur une carte">
</form>
</div>
</body>
</html>