Files
palladium-monitor/ticket-system/templates/error.html
T
AI Agent 26940c4574 feat: initial commit - lightweight ticket system with Flask+SQLite
Features:
- User authentication (login/register)
- Ticket CRUD with status/priority/category
- Rich text description with paste-to-image
- File attachment upload (images/documents)
- Multi-select CC recipients
- Role-based permission control (admin/user)
- In-app notifications
- Statistics dashboard
- Gunicorn production deployment
2026-07-02 15:31:27 +08:00

19 lines
650 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ code }} - 工单系统</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="auth-page">
<div class="auth-card" style="text-align:center;">
<h1 style="font-size:64px;color:var(--danger);">{{ code }}</h1>
<p style="font-size:16px;margin-top:16px;color:var(--text-muted);">{{ message }}</p>
<a href="/" class="btn btn-primary" style="margin-top:24px;">返回首页</a>
</div>
</div>
</body>
</html>