Files
my_one_web/templates/index.html
小白 58cc9997e3 fix: 将主题按钮移到body直接子元素位置
- 按钮从 container 内部移到 body 直接子元素
- 使用 .theme-toggle 选择器替代 .container > .theme-toggle
- 彻底解决按钮闪烁问题
- 更新 CSS 版本号
2026-03-12 11:54:01 +08:00

33 lines
1.1 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') }}?v=20260312c">
</head>
<body>
<button class="theme-toggle" aria-label="切换主题">🌙</button>
<div class="container">
<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>