83 lines
1.8 KiB
HTML
83 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>RFCP Loading</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
color: white;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
-webkit-app-region: drag;
|
|
user-select: none;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
margin-bottom: 8px;
|
|
background: linear-gradient(90deg, #00d4ff, #00ff88);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 14px;
|
|
color: #888;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.loader {
|
|
width: 200px;
|
|
height: 4px;
|
|
background: #333;
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.loader-bar {
|
|
height: 100%;
|
|
width: 30%;
|
|
background: linear-gradient(90deg, #00d4ff, #00ff88);
|
|
border-radius: 2px;
|
|
animation: loading 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes loading {
|
|
0% { transform: translateX(-100%); }
|
|
100% { transform: translateX(400%); }
|
|
}
|
|
|
|
.status {
|
|
margin-top: 15px;
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
|
|
.version {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
font-size: 11px;
|
|
color: #444;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="logo">RFCP</div>
|
|
<div class="subtitle">RF Coverage Planner</div>
|
|
<div class="loader">
|
|
<div class="loader-bar"></div>
|
|
</div>
|
|
<div class="status">Starting backend server...</div>
|
|
<div class="version">v1.6.1</div>
|
|
</body>
|
|
</html>
|