Loris BALOCCHI
9adca94b82
Ajout des pages pour gestion globale des évènements. Co-authored-by: Charpentier Juliette <juliette.charpentier@etu.u-pec.fr>
80 lines
2.8 KiB
PHP
80 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="../styles/main.css" />
|
|
<link rel="stylesheet" href="../styles/header.css" />
|
|
<link rel="stylesheet" href="../styles/footer.css" />
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32"
|
|
href="https://tickets.paris2024.org/obj/media/FR-Paris2024/specialLogos/favicons/favicon-32x32.png" />
|
|
<title>Évènements | Jeux Olympiques - Paris 2024</title>
|
|
</head>
|
|
|
|
<body>
|
|
<?php include ($_SERVER['DOCUMENT_ROOT'] . '/views/header.php') ?>
|
|
|
|
|
|
<!-- code de la page ici -->
|
|
<h1>Évènements</h1>
|
|
|
|
|
|
<!-- <form method="POST"> -->
|
|
<?php
|
|
/*
|
|
- Sujet:
|
|
-- Créer un évènement (rôle organisateur ou admin) ✅
|
|
-- s'inscrire à un évènement (rôle membre ou +)
|
|
-- participer à un évènement (sportif)
|
|
-- laisser un commentaire (rôle membre ou +)
|
|
-- afficher la liste des évènements (tout le monde)
|
|
-- Rechercher un évènement par date, lieu, ou nom
|
|
-- Trier les évènements par date, nombre de participants, personnes y ayant accès, etc...
|
|
*/
|
|
|
|
?>
|
|
<!-- to do
|
|
-- s'inscrire à un évènement (rôle membre ou +)
|
|
-- participer à un évènement (sportif)
|
|
-- laisser un commentaire (rôle membre ou +)
|
|
-- afficher la liste des évènements (tout le monde)
|
|
-- Rechercher un évènement par date, lieu, ou nom
|
|
-->
|
|
|
|
<?php
|
|
if (isset($_COOKIE['userData'])) {
|
|
if (($role == 'Administrateur') or ($role == 'Organisateur')) {
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/new\';">Créer un évènement</button>';
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/list\';">Consulter la liste des évènements</button>';
|
|
|
|
} else if ($role == 'Sportif') {
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/participate\';">Participer à un évènement</button>';
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/list\';">Consulter la liste des évènements</button>';
|
|
} else {
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/list\';">Consulter la liste des évènements</button>';
|
|
}
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/book\';">S\'inscrire un évènement</button>';
|
|
|
|
} else {
|
|
echo '<button class="new-event" onclick="window.location.href = \'/events/list\';">Consulter la liste des évènements</button>';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php include ($_SERVER['DOCUMENT_ROOT'] . '/views/footer.php') ?>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|