10 lines
323 B
JavaScript
10 lines
323 B
JavaScript
// 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();
|
|
}
|
|
});
|