-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.html
More file actions
48 lines (41 loc) · 948 Bytes
/
status.html
File metadata and controls
48 lines (41 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TurtleMod Status</title>
<style>
body {
background: #f4f7f4;
font-family: "Inter", sans-serif;
margin: 0;
padding: 20px;
color: #1a1a1a;
}
h1 {
color: #1f7a3a;
}
#status-box {
background: #e8f7eb;
padding: 20px;
border-radius: 10px;
margin-top: 15px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
</style>
</head>
<body>
<h1>System Status</h1>
<div id="status-box">Checking system status…</div>
<script>
const box = document.getElementById("status-box");
setTimeout(() => {
box.innerHTML = `
<p><strong>Website:</strong> Online</p>
<p><strong>Editor:</strong> Online</p>
<p><strong>API:</strong> Stable</p>
`;
}, 500);
</script>
</body>
</html>