You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Scripted/View/src/pages/Admin/SeeOrdre.php

58 lines
1.9 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<title>Admin</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./View/src/CSS/Admin2.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<a href="index.php?action=goToAdmin" class="send mt-3 mb-5 px-2 d-flex align-items-center">
Retour
</a>
<h1>Ordre des énigmes</h1>
</div>
</div>
<div class="row">
<div class="col">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Enigme</th>
<th scope="col">Ordre</th>
</tr>
</thead>
<tbody>
<?php
foreach ($lesEnigmes as $enigme) {
echo "<tr>";
echo "<td>".$enigme->getNom()."</td>";
echo "<td>".$enigme->getOrdre()."</td>";
echo "</tr>";
}
?>
<tr>
<td>Modifier</td>
<?php echo '<td><a class="link" href="index.php?action=goToModifOrdre">Modifier</a></td>'; ?>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>