2024-11-24 11:30:36 +01:00
|
|
|
<?php
|
|
|
|
include 'annonces.php';
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Liste des participants</title>
|
|
|
|
<link rel="stylesheet" href="../quest-rando/style.css">
|
2024-12-01 19:20:28 +01:00
|
|
|
|
2024-11-24 11:30:36 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<!-- Conteneur principal -->
|
|
|
|
<div class="main-container">
|
|
|
|
<!-- Bouton Retour -->
|
|
|
|
<div class="btn-retour">
|
2024-12-01 19:20:28 +01:00
|
|
|
<a href="https://www.lemimi.fr/fr/prochaine-rando">
|
2024-11-24 11:30:36 +01:00
|
|
|
<img src="./images/bouton_retour.gif" width="180" height="60" border="0" title="Clic" alt="Retour page rando">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Scroll To Top -->
|
|
|
|
<button id="scrollToTop" onclick="scrollToTop()">Haut de page</button>
|
|
|
|
<script src="../quest-rando/js/scrolltotop.js" type="text/javascript"></script>
|
|
|
|
|
|
|
|
<!-- Vers liste des participants -->
|
|
|
|
<?php displayAnnonces(); ?>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|