Files
weibo_signin/frontend/templates/404.html

13 lines
665 B
HTML
Raw Normal View History

2026-03-09 16:10:29 +08:00
{% extends "base.html" %}
{% block title %}页面未找到 - 微博超话签到{% endblock %}
2026-03-09 16:10:29 +08:00
{% block content %}
<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>
2026-03-09 16:10:29 +08:00
</div>
{% endblock %}