Files
weibo_signin/frontend/templates/500.html

13 lines
590 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; color:#ef4444; margin-bottom:12px;">500</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 %}