Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
assignment.work.zone /
assets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
script.js
1.35
KB
-rw-r--r--
2026-03-28 15:31
Save
Rename
function toggleMobileMenu() { const navLinks = document.querySelector('.nav-links'); if (navLinks.style.display === 'flex') { navLinks.style.display = 'none'; } else { navLinks.style.display = 'flex'; navLinks.style.flexDirection = 'column'; navLinks.style.position = 'absolute'; navLinks.style.top = '70px'; navLinks.style.left = '0'; navLinks.style.width = '100%'; navLinks.style.background = 'var(--card-bg-dark)'; navLinks.style.padding = '20px'; navLinks.style.textAlign = 'center'; } } function showToast(message, icon = 'check') { let toast = document.getElementById('custom-toast'); if (!toast) { toast = document.createElement('div'); toast.id = 'custom-toast'; toast.className = 'toast-container'; document.body.appendChild(toast); } toast.innerHTML = `<div class="toast-icon"><i class="fas fa-${icon}"></i></div><span>${message}</span>`; // Reset classes and force reflow toast.classList.remove('show'); void toast.offsetWidth; toast.classList.add('show'); // Hide after 3 seconds if (window.toastTimeout) clearTimeout(window.toastTimeout); window.toastTimeout = setTimeout(() => { toast.classList.remove('show'); }, 3000); }