// leads.js // ========================================== // 1. MENU TOGGLE (REMOVED) // ========================================== // Menu toggle functionality has been removed // ========================================== // 2. LEADS TABLE LOGIC // ========================================== function getLeads() { const storedLeads = localStorage.getItem('myLeads'); if (storedLeads) { return JSON.parse(storedLeads); } else { return []; } } function populateLeadsTable() { const tableBody = document.getElementById('leadsTableBody'); const leadsData = getLeads(); if (!tableBody) return; if (leadsData.length === 0) { tableBody.innerHTML = `
Keine Anfragen vorhanden