// SYSTEM PANEL //
[ROOT]
/
home
/
csender
/
legus.lawnet.me_backup_20250830-203603
[ PARENT ]
EDIT :: test-api.html
<!doctype html> <html lang="en"> <meta charset="utf-8"> <title>API Ping Test</title> <pre id="out">Testing...</pre> <script> (async () => { try { const res = await fetch('http://legus.creativeft.com/api/ping', { credentials: 'include' }); const txt = await res.text(); document.getElementById('out').textContent = 'Status: ' + res.status + '\n' + 'Body: ' + txt; } catch (e) { document.getElementById('out').textContent = 'Error: ' + e; } })(); </script> </html>
SAVE
CANCEL