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