27 lines
712 B
HTML
Raw Permalink Normal View History

2025-10-07 10:59:52 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Basic Test</title>
</head>
<body>
<div style="padding: 20px;">
<h1>Basic HTML Test</h1>
<p id="status">JavaScript not loaded</p>
</div>
<script>
console.log("🟢 Basic HTML/JS test starting");
document.getElementById('status').innerHTML = '✅ JavaScript is working!';
// Test fetch capability
fetch('/')
.then(response => {
console.log("🟢 Network fetch works:", response.status);
})
.catch(error => {
console.error("❌ Network fetch failed:", error);
});
</script>
</body>
</html>