mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-03 04:05:02 +00:00
53 lines
1.1 KiB
HTML
53 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="refresh" content="3">
|
|
<title>ntopng</title>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
text-align: center;
|
|
}
|
|
.spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-bottom: 20px;
|
|
border: 4px solid #ddd;
|
|
border-top-color: #ff6600;
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
h1 {
|
|
font-size: 1.3em;
|
|
font-weight: 600;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
p {
|
|
margin: 0;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="spinner"></div>
|
|
<h1>We're almost ready…</h1>
|
|
<p>ntopng is unable to serve requests at this time (possibly starting up or shutting down). Please hold on.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|