Sign In
Sign Up
English
Español
中文
Tiếng Việt
हिन्दी
العربية
Guide
Logout
English
Español
中文
Tiếng Việt
हिन्दी
العربية
Subscribe
Connections
⚠️
🔄
New Report
Saved Reports
Your Saved Reports
Clear All
🚨 Missing Person
🔍 Lost Item
🙏 Found Person
🔄 Found Item
🎉 Event
Use My Location
Upload Images:
Choose files (max 5)
Submit Report
🔒
📸
Share This Report
Save Report
📜
👮
// Admin Panel - Only visible to app owner
⚙️ Admin
Admin Tools
📱 View Mobile Logs
🔍 Force Check Logs
🗑️ Clear Logs
👑 Generate Complimentary Pass Code
1 Month
3 Months
6 Months
1 Year
Generate
👑 Generate Bulk Pass Codes (Organizations)
1 Month
3 Months
6 Months
1 Year
Generate Bulk Codes
Dashboard
// ============================================ // AUTO CLEANUP ON PAGE LOAD // ============================================ (function autoCleanupLocalStorage() { console.log("🧹 Running localStorage auto-cleanup..."); const maxAge = 30 * 24 * 60 * 60 * 1000; // 30 days const now = Date.now(); let cleanedCount = 0; for (let i = 0; i < localStorage.length; i++) { const key = localStorage.key(i); if (key && (key.startsWith('img_') || key.startsWith('whatsapp_') || key.startsWith('imgpkg_'))) { try { const item = JSON.parse(localStorage.getItem(key)); if (item.timestamp && (now - item.timestamp) > maxAge) { localStorage.removeItem(key); cleanedCount++; } } catch (e) { // If can't parse, remove it (corrupted) localStorage.removeItem(key); cleanedCount++; } } } if (cleanedCount > 0) { console.log(`🧹 Cleaned up ${cleanedCount} old image backup(s)`); } else { console.log("✅ No old backups to clean"); } })();