2026-03-12 08:35:52 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<title>欢迎回来 - {{ username }}</title>
|
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
2026-03-12 09:40:35 +08:00
|
|
|
|
<!-- 快捷导航栏 - 登录后显示 -->
|
|
|
|
|
|
<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>
|
2026-03-12 08:35:52 +08:00
|
|
|
|
<button class="theme-toggle" aria-label="切换主题">🌙</button>
|
2026-03-12 09:40:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
2026-03-12 08:35:52 +08:00
|
|
|
|
<div class="avatar">
|
|
|
|
|
|
<span class="sparkle">🎉</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h1>欢迎回来,{{ username }}!</h1>
|
|
|
|
|
|
<p class="welcome">Welcome Back!</p>
|
|
|
|
|
|
<p class="message">
|
|
|
|
|
|
您已成功登录<br>
|
|
|
|
|
|
这是您的专属空间<br>
|
|
|
|
|
|
小白一直陪伴着您 🐶
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div class="auth-buttons">
|
|
|
|
|
|
<a href="{{ url_for('logout') }}" class="btn btn-danger">退出登录</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="footer">
|
|
|
|
|
|
Powered by <span>Flask</span> & <span>OpenClaw</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
|
|
|
|
{% if messages %}
|
|
|
|
|
|
<div class="flash-messages">
|
|
|
|
|
|
{% for category, message in messages %}
|
|
|
|
|
|
<div class="flash-{{ category }}">{{ message }}</div>
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
|
|
|
|
<script src="{{ url_for('static', filename='js/theme.js') }}"></script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|