diff --git a/templates/index.html b/templates/index.html index fc440f4..2f2af9b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -354,59 +354,3 @@ - const domainList = document.getElementById('domainList'); - domainList.innerHTML = ''; - domains.forEach(domain => { - const domainDiv = document.createElement('div'); - domainDiv.className = 'domain-list-item'; - domainDiv.innerHTML = ` - function showStatus(message, type) { - const statusDiv = document.createElement('div'); - statusDiv.className = `status ${type}`; - statusDiv.textContent = message; - const container = document.querySelector('.container'); - const domainList = document.querySelector('.domain-list'); - if (container && domainList) { - container.insertBefore(statusDiv, domainList); - } else { - document.body.appendChild(statusDiv); - } - setTimeout(() => { - if (statusDiv.parentNode) { - statusDiv.remove(); - } - }, 5000); - } - - function loadDomains() { - fetch('/api/domains') - .then(response => response.json()) - .then(domains => { - const domainList = document.getElementById('domainList'); - domainList.innerHTML = ''; - domains.forEach(domain => { - const domainDiv = document.createElement('div'); - domainDiv.className = 'domain-list-item'; - domainDiv.innerHTML = ` -

${domain.domain}

-

Backend: ${domain.backend_name}

-

SSL: ${domain.ssl_enabled ? 'Enabled' : 'Disabled'}

- - - `; - domainList.appendChild(domainDiv); - }); - }) - .catch(error => { - console.error('Error loading domains:', error); - showStatus('Error loading domains: ' + error.message, 'error'); - }); - } - - addServerField(); - loadDomains(); - - - \ No newline at end of file