Files
Warracker/frontend/simple-status.html
sassanix 8f62a166a6 Status page added
Please refer to Changelogs.md
2025-03-06 22:06:44 -04:00

35 lines
981 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Status Page</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.success {
color: green;
font-size: 24px;
margin: 20px 0;
}
a {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 4px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Simple Status Page</h1>
<p class="success">If you can see this, basic navigation to the status page is working!</p>
<p>This is a minimal test page with no JavaScript or external dependencies.</p>
<a href="index.html">Back to Home</a>
</body>
</html>