Skip to content

Instantly share code, notes, and snippets.

View WesleysmithJr's full-sized avatar

Martyncoff WesleysmithJr

View GitHub Profile
// 1. УВЕДОМЛЕНИЯ (TOAST)
function showToast(message, type = "info") {
const toast = document.getElementById("toast")
if (!toast) return
toast.textContent = message
toast.className = `toast show ${type}`
setTimeout(() => toast.classList.remove("show"), 4000)
}
// 2. АВТОРИЗАЦИЯ И ПЕРЕКЛЮЧЕНИЕ ФОРМ (SERVER VERSION)