// function showToast(message) { // const toastEl = document.getElementById("formToast"); // // Force red color // toastEl.className = "toast align-items-center bg-danger text-white border-0"; // toastEl.querySelector(".toast-body").textContent = message; // const toast = new bootstrap.Toast(toastEl, { // delay: 3000 // }); // toast.show(); // }