37 lines
1023 B
HTML
37 lines
1023 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Site Under Construction</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="banner">...</div>
|
|
<h1>Service Temporarily Down</h1>
|
|
<p class="subtitle">This site is currently under construction.</p>
|
|
<p class="note"></p>
|
|
<div class="visitor-panel">
|
|
<h2>Recent Visitors</h2>
|
|
<p class="visitor-note"></p>
|
|
<div class="table-wrap">
|
|
<table id="visitors">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>IP Address</th>
|
|
<th>Location</th>
|
|
<th>Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="visitor-body">
|
|
<p>Checking...</p>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<footer>Protected access · Visitor logging is masked for privacy</footer>
|
|
</div>
|
|
</body>
|
|
</html> |