40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>欢迎 - 云下飞</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<!-- 快捷导航栏 -->
|
|
<div class="quick-nav">
|
|
<a href="http://1.14.58.157:6806" target="_blank" class="nav-btn" title="思源笔记">📝 思源</a>
|
|
<a href="http://1.14.58.157:3000" target="_blank" class="nav-btn" title="Gitea">📦 Gitea</a>
|
|
<a href="http://1.14.58.157:8080" target="_blank" class="nav-btn" title="NocoDB">📊 NocoDB</a>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<button class="theme-toggle" aria-label="切换主题">🌙</button>
|
|
<div class="avatar">
|
|
<span class="sparkle">👋</span>
|
|
</div>
|
|
<h1>欢迎</h1>
|
|
<p class="welcome">Welcome!</p>
|
|
<p class="message">
|
|
这是您的个人服务器<br>
|
|
由 <strong>小白</strong> 🐶 为您精心打造<br>
|
|
祝您使用愉快!
|
|
</p>
|
|
<div class="auth-buttons">
|
|
<a href="{{ url_for('login') }}" class="btn btn-primary">登录</a>
|
|
<a href="{{ url_for('register') }}" class="btn btn-secondary">注册</a>
|
|
</div>
|
|
<div class="footer">
|
|
Powered by <span>Flask</span> & <span>OpenClaw</span>
|
|
</div>
|
|
</div>
|
|
<script src="{{ url_for('static', filename='js/theme.js') }}"></script>
|
|
</body>
|
|
</html>
|