接口跑通,基础功能全部实现

This commit is contained in:
2026-03-16 16:14:08 +08:00
parent f81aec48ca
commit 2f2d5c3795
38 changed files with 3352 additions and 1754 deletions

View File

@@ -1,12 +1,12 @@
{% extends "base.html" %}
{% block title %}Page Not Found - Weibo-HotSign{% endblock %}
{% block title %}页面未找到 - 微博超话签到{% endblock %}
{% block content %}
<div style="text-align: center; padding: 60px 20px;">
<h1 style="font-size: 48px; color: #6366f1; margin-bottom: 20px;">404</h1>
<p style="font-size: 24px; color: #333; margin-bottom: 20px;">Page Not Found</p>
<p style="color: #999; margin-bottom: 30px;">The page you're looking for doesn't exist.</p>
<a href="{{ url_for('dashboard') }}" class="btn btn-primary">Go to Dashboard</a>
<div style="text-align:center; padding:80px 20px;">
<div style="font-size:64px; margin-bottom:16px;">🔍</div>
<h1 style="font-size:48px; font-weight:700; background:linear-gradient(135deg,#6366f1,#a855f7); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:12px;">404</h1>
<p style="font-size:18px; color:#64748b; margin-bottom:32px;">页面未找到</p>
<a href="{{ url_for('dashboard') }}" class="btn btn-primary" style="padding:14px 32px; font-size:16px;">返回控制台</a>
</div>
{% endblock %}