2026-06-03 17:33:56 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Univers Jeux Vidéo - Accueil</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2026-06-10 22:01:21 +02:00
|
|
|
<a href="<?php echo site_url('jeux/lister'); ?>">
|
|
|
|
|
Administration (Gestion des jeux)
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-03 17:33:56 +02:00
|
|
|
<h1>Bienvenue sur l'application Jeux Vidéo</h1>
|
|
|
|
|
|
|
|
|
|
<main style="display: flex; gap: 50px;">
|
2026-06-10 16:31:05 +02:00
|
|
|
<section style="margin-bottom: 30px; background: #f4f4f4; padding: 15px; border-radius: 5px;">
|
|
|
|
|
<h2>Rechercher un jeu vidéo</h2>
|
|
|
|
|
<form action="<?php echo site_url('home/search'); ?>" method="GET">
|
|
|
|
|
<input type="text" name="keyword" placeholder="Ex: Zelda, Mario..." required style="padding: 8px; width: 250px;">
|
|
|
|
|
<button type="submit" style="padding: 8px 15px;">Rechercher</button>
|
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
|
2026-06-03 17:33:56 +02:00
|
|
|
<section>
|
|
|
|
|
<h2>Nos Catégories</h2>
|
|
|
|
|
<ul>
|
2026-06-10 22:01:21 +02:00
|
|
|
<?php foreach ($categories as $category): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="<?php echo site_url('category/view/' . $category['id']); ?>">
|
|
|
|
|
<?php echo html_escape($category['description']); ?>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
2026-06-03 17:33:56 +02:00
|
|
|
</ul>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
<h2>Nos Genres</h2>
|
|
|
|
|
<ul>
|
2026-06-10 22:01:21 +02:00
|
|
|
<?php foreach ($genres as $genre): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="<?php echo site_url('genre/view/' . $genre['id']); ?>">
|
|
|
|
|
<?php echo html_escape($genre['description']); ?>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
2026-06-10 16:31:05 +02:00
|
|
|
</ul>
|
2026-06-03 17:33:56 +02:00
|
|
|
</section>
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|