35608-vm/assets/js/main.js
Flatlogic Bot 2c74d858b2 Insta app
2025-11-10 04:16:49 +00:00

18 lines
507 B
JavaScript

function showToast(title, message, type = 'info') {
const toastEl = document.getElementById('notificationToast');
const toastTitle = document.getElementById('toast-title');
const toastBody = document.getElementById('toast-body');
toastTitle.innerText = title;
toastBody.innerText = message;
const toast = new bootstrap.Toast(toastEl);
toastEl.classList.remove('success', 'error', 'info');
if(type) {
toastEl.classList.add(type);
}
toast.show();
}