1
0
Fork 0
JeuPistesSarreguemines/index.php

53 lines
1.5 KiB
PHP
Raw Normal View History

2023-06-27 14:31:55 +02:00
<?php
require_once "require/base.php";
// Si l'appareil a déjà choisi une équipe, on le redirige vers la bonne page :
if (isset($_COOKIE["team"])) {
header("Location: puzzles.php?team=" . htmlspecialchars($_COOKIE["team"]));
die();
}
// Sinon, on affiche la liste des équipes :
else {
$database = new Database();
$stmt = $database->pdo_teams->prepare("SELECT * FROM teams");
$stmt->execute();
$teams = $stmt->fetchAll();
}
2023-06-27 14:31:55 +02:00
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<?php
require_once $rq_path . "head.php";
?>
<title><?= $tr["tab_title"]["home"]?></title>
</head>
<body>
<header>
<?php
require_once $rq_path . "nav.php";
?>
</header>
<main>
<header>
<h1><?= $tr["page_title"]["home"]?></h1>
<p><?= $tr["home"]["subtitle"]?></p>
<p><?= $tr["home"]["message"]?></p>
</header>
2023-06-28 17:41:57 +02:00
<article>
<ul>
<?php foreach ($teams as $team) : ?>
<li><a href="team_confirm.php?team=<?= $team["id"] ?>"><?= $tr["home"]["team"] . $team["id"] ?></a></li>
<?php endforeach; ?>
</ul>
2023-06-28 17:41:57 +02:00
</article>
2023-06-27 14:31:55 +02:00
</main>
<footer>
<?php
require_once $rq_path . "footer.php";
?>
</footer>
</body>
</html>