document.addEventListener('DOMContentLoaded', function () { const logNowButton = document.getElementById('logNowBtn'); if (logNowButton) { logNowButton.addEventListener('click', function (e) { e.preventDefault(); const toastContainer = document.getElementById('toast-container'); const toastHTML = ` `; toastContainer.innerHTML = toastHTML; const toastElement = toastContainer.querySelector('.toast'); const toast = new bootstrap.Toast(toastElement); toast.show(); }); } });