diff --git a/public/css/todo.css b/public/css/todo.css index 9554a30..dd450d3 100644 --- a/public/css/todo.css +++ b/public/css/todo.css @@ -1,6 +1,5 @@ body { font-family: Arial, sans-serif; - background-color: #f4f4f4; margin: 0; padding: 0; } diff --git a/public/js/todo.js b/public/js/todo.js index ef45dcd..9b0fe64 100644 --- a/public/js/todo.js +++ b/public/js/todo.js @@ -13,11 +13,6 @@ function ajoutTache() { var tacheDiv = document.createElement("div"); tacheDiv.className = "task"; //mise en forme css - // Créer un élément pour afficher la tâche - var tacheSpan = document.createElement("span"); - tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput - tacheDiv.appendChild(tacheSpan); //pour afficher à la suite - // Créer une checkbox pour marquer la tâche comme terminée var checkbox = document.createElement("input"); checkbox.type = "checkbox"; @@ -26,6 +21,11 @@ function ajoutTache() { }; tacheDiv.appendChild(checkbox); + // Créer un élément pour afficher la tâche + var tacheSpan = document.createElement("span"); + tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput + tacheDiv.appendChild(tacheSpan); //pour afficher à la suite + // Ajouter un bouton "Supprimer" var suppButton = document.createElement("button"); suppButton.textContent = "Supprimer"; diff --git a/resources/css/todo.css b/resources/css/todo.css index 9554a30..dd450d3 100644 --- a/resources/css/todo.css +++ b/resources/css/todo.css @@ -1,6 +1,5 @@ body { font-family: Arial, sans-serif; - background-color: #f4f4f4; margin: 0; padding: 0; } diff --git a/resources/js/todo.js b/resources/js/todo.js index ef45dcd..9b0fe64 100644 --- a/resources/js/todo.js +++ b/resources/js/todo.js @@ -13,11 +13,6 @@ function ajoutTache() { var tacheDiv = document.createElement("div"); tacheDiv.className = "task"; //mise en forme css - // Créer un élément pour afficher la tâche - var tacheSpan = document.createElement("span"); - tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput - tacheDiv.appendChild(tacheSpan); //pour afficher à la suite - // Créer une checkbox pour marquer la tâche comme terminée var checkbox = document.createElement("input"); checkbox.type = "checkbox"; @@ -26,6 +21,11 @@ function ajoutTache() { }; tacheDiv.appendChild(checkbox); + // Créer un élément pour afficher la tâche + var tacheSpan = document.createElement("span"); + tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput + tacheDiv.appendChild(tacheSpan); //pour afficher à la suite + // Ajouter un bouton "Supprimer" var suppButton = document.createElement("button"); suppButton.textContent = "Supprimer"; diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php index ce6378c..addd89d 100644 --- a/resources/views/about.blade.php +++ b/resources/views/about.blade.php @@ -7,7 +7,6 @@ @vite('resources/css/app.css') -

About

@include('menu') \ No newline at end of file diff --git a/resources/views/menu.blade.php b/resources/views/menu.blade.php index 2ddc963..e521272 100644 --- a/resources/views/menu.blade.php +++ b/resources/views/menu.blade.php @@ -1,7 +1,6 @@ -
-

Menu

-
- Home - About -
+
+ > + Home + About + Todo
\ No newline at end of file diff --git a/resources/views/todo.blade.php b/resources/views/todo.blade.php index 0a81aa6..92a0222 100644 --- a/resources/views/todo.blade.php +++ b/resources/views/todo.blade.php @@ -5,15 +5,16 @@ Document @vite('resources/css/app.css') - @vite('resources/css/todo.css') -
-

Ma Liste

- - -
+ @include('menu') +
+
+ + +
+
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index f920f1b..103354a 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -6,7 +6,12 @@ @vite('resources/css/app.css') -

Bienvenue sur la page d'accueil

@include('menu') +
+
+ +

Bienvenue sur la page d'accueil

+
+
\ No newline at end of file