mirror of
https://github.com/sassanix/Warracker.git
synced 2026-01-06 21:49:48 -06:00
35 lines
981 B
HTML
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> |