diff --git a/blog/html/accueil_blog.html b/blog/html/accueil_blog.html
index 2f74913..5c5b14b 100644
--- a/blog/html/accueil_blog.html
+++ b/blog/html/accueil_blog.html
@@ -94,7 +94,7 @@
diff --git a/blog/js/ajouter_article.js b/blog/js/ajouter_article.js
index 181b008..70c5f93 100644
--- a/blog/js/ajouter_article.js
+++ b/blog/js/ajouter_article.js
@@ -54,6 +54,6 @@ form.addEventListener('submit', function(e) {
// Redirection après 1 seconde
setTimeout(() => {
- window.location.href = "../html/liste_article.html";
+ window.location.href = "../html/liste_categorie_article.html";
}, 1000);
});
diff --git a/blog/js/ajouter_categorie.js b/blog/js/ajouter_categorie.js
index c904fdc..8c4189c 100644
--- a/blog/js/ajouter_categorie.js
+++ b/blog/js/ajouter_categorie.js
@@ -40,7 +40,7 @@ existingCategories.push(nom);
// Redirection après 1 seconde
setTimeout(() => {
- window.location.href = "../html/liste_categorie.html";
+ window.location.href = "../html/liste_categorie_article.html";
}, 1000);
diff --git a/blog/js/modifier_article.js b/blog/js/modifier_article.js
index e87ce17..a5a930d 100644
--- a/blog/js/modifier_article.js
+++ b/blog/js/modifier_article.js
@@ -55,6 +55,6 @@ form.addEventListener("submit", function (e) {
// Redirection après succès
setTimeout(() => {
- window.location.href = "../html/liste_article.html";
+ window.location.href = "../../blog/html/liste_categorie_article.html";
}, 1500);
});
diff --git a/blog/js/modifier_categorie.js b/blog/js/modifier_categorie.js
index 7642c4d..97f8b1a 100644
--- a/blog/js/modifier_categorie.js
+++ b/blog/js/modifier_categorie.js
@@ -21,6 +21,6 @@ form.addEventListener("submit", function (e) {
// Redirection après succès
setTimeout(() => {
- window.location.href = "../html/liste_categorie.html";
+ window.location.href = "../html/liste_categorie_article.html";
}, 1500);
});