/* Mode Publik Read-Only */ body.public-mode #main-sidebar { display: none !important; } body.public-mode .admin-only { display: none !important; }

ADAReal Pro

Sistem Manajemen Properti & Virtual Tour Premium

Login Default: admin / Password: 123
// Cek Parameter Mode Publik dari URL function checkPublicMode() { const urlParams = new URLSearchParams(window.location.search); const isPublic = urlParams.get('mode') === 'public'; if (isPublic) { document.body.classList.add('public-mode'); document.getElementById('auth-screen').classList.add('hidden'); document.getElementById('app-screen').classList.remove('hidden'); const pubBanner = document.getElementById('public-header-banner'); if(pubBanner) pubBanner.classList.remove('hidden'); // Buka langsung dashboard katalog switchTab('dashboard'); // Sembunyikan elemen admin di UI setTimeout(() => { document.querySelectorAll('.admin-only').forEach(el => el.classList.add('hidden')); }, 100); } } function exitPublicMode() { window.location.href = window.location.pathname; // Kembalikan ke halaman login biasa } window.onload = function() { renderNav(); checkPublicMode(); };