27 lines
712 B
HTML
27 lines
712 B
HTML
|
|
<!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>
|