From e313f7be36e27f61b0a10f5df3830b2024b8ae8d Mon Sep 17 00:00:00 2001 From: vbochet <vbochet@gmail.com> Date: Thu, 5 May 2016 22:04:22 +0200 Subject: [PATCH] =?UTF-8?q?Modification=20de=20la=20page=20d'accueil=20tem?= =?UTF-8?q?porairement=20pour=20proposer=20un=20lien=20vers=20la=20d=C3=A9?= =?UTF-8?q?connexion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/view/Index/display.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/view/Index/display.html b/app/view/Index/display.html index 853e33d..99dc981 100644 --- a/app/view/Index/display.html +++ b/app/view/Index/display.html @@ -6,13 +6,12 @@ <article> <h1>Exemple de page d'accueil</h1> - <h3 style="margin-bottom:-2px;"><a href="listejeux">Liste de jeux</a></h3> + <h3 style="margin-bottom:-2px;">Liste de jeux</h3> <ul> <?php foreach($this->list as $jeu) : ?> <li><a href="jeu/<?php echo $jeu->slug;?>"><?php echo $jeu->nom;?></a></li> <?php endforeach;?> </ul> - <h3 style="margin-bottom:-2px;"><a href="addjeu">Demander à ajouter un jeu</a></h3> <h3 style="margin-bottom:-4px;">Liste de profils</h3> <ul> @@ -27,6 +26,8 @@ <li><a href="classement/jeu/random">Classement pour un jeu spécifique</a></li> </ul> + <a href="deconnexion">Se déconnecter</a> + </article> <?php include(ROOT."/app/view/Includes/footer.include.html"); ?> -- GitLab