From 7680f706bf472d2ad39d18f4116c1f5b00ce8fcf Mon Sep 17 00:00:00 2001 From: Dorian Dejean <77268564+KeshAzar@users.noreply.github.com> Date: Thu, 17 Nov 2022 17:32:56 +0100 Subject: [PATCH] Update index.php --- www/index.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/www/index.php b/www/index.php index 48c81d6..3c2b2e0 100644 --- a/www/index.php +++ b/www/index.php @@ -231,8 +231,10 @@ $tachesArrayDb = $stmt->fetchAll(PDO::FETCH_ASSOC); <li class="<?= ($infoTache["accomplie"] === true)?"accomplie":""; ?>"> <span class="coche done"><a href="?action=basculer&id=<?= $infoTache["id"]; ?>" title="Cliquez pour faire basculer l'état de cette tâche."><img src="ressources/images/coche.svg" alt=""></a></span> - <span class="texte"><?= $infoTache["texte"]; ?></span> - <span class="ajout"><?= $infoTache["date_ajout"]; ?></span> + <div class="memo"> + <span class="texte"><?= $infoTache["texte"]; ?></span> + <span class="ajout"><?= $infoTache["date_ajout"]; ?></span> + </div> <span class="coche"><a href="?action=supprimer&id=<?= $infoTache["id"]; ?>" title="Cliquez pour supprimer cette tâche."><img src="ressources/images/delete.svg" alt=""></a></span> </li> @@ -243,4 +245,4 @@ $tachesArrayDb = $stmt->fetchAll(PDO::FETCH_ASSOC); </div> </body> -</html> \ No newline at end of file +</html> -- GitLab