22 lines
872 B
HTML
22 lines
872 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>frpc-console</title>
|
|
<style>
|
|
body { font-family: sans-serif; background: #0d0d0d; color: #fff; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
|
|
.container { text-align: center; }
|
|
.container h1 { font-size: 48px; color: #63e2b7; }
|
|
.container p { color: #888; }
|
|
.container .status { display: inline-block; padding: 8px 20px; background: #1a1a1a; border-radius: 20px; color: #63e2b7; margin-top: 20px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>🚀 frpc-console</h1>
|
|
<p>后端已启动,正在等待前端接入...</p>
|
|
<div class="status">✅ frpc 运行中</div>
|
|
</div>
|
|
</body>
|
|
</html> |