aboutsummaryrefslogtreecommitdiff
path: root/public/js/main.js
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-08-17 19:46:20 +0200
committerpolo <ordipolo@gmx.fr>2025-08-17 19:46:20 +0200
commitdba24b8c18aed84a71c3169b2df5598d62deab06 (patch)
treecf913cd986f01894bc32a71997014434bf3ec7ad /public/js/main.js
parentd7468fc363b5d028db84373d4abfa6d7d19bacb9 (diff)
downloadcms-dba24b8c18aed84a71c3169b2df5598d62deab06.zip
classe FormValidation et amélioration des envois d'e-mail
Diffstat (limited to 'public/js/main.js')
-rw-r--r--public/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/main.js b/public/js/main.js
index 2ffd33b..4be7843 100644
--- a/public/js/main.js
+++ b/public/js/main.js
@@ -33,7 +33,7 @@ function toastNotify(message) {
33 var toast = document.getElementById('toast'); 33 var toast = document.getElementById('toast');
34 toast.textContent = message; 34 toast.textContent = message;
35 toast.className = 'toast show'; 35 toast.className = 'toast show';
36 setTimeout(function(){ toast.className = toast.className.replace('show', ''); }, 3000); 36 setTimeout(function(){ toast.className = toast.className.replace('show', ''); }, 5000);
37} 37}
38 38
39 39