// main.js document.addEventListener('DOMContentLoaded', function () { const urlParams = new URLSearchParams(window.location.search); if (urlParams.has('success')) { const toastEl = document.getElementById('successToast'); const toast = new bootstrap.Toast(toastEl); toast.show(); } });