File size: 2,559 Bytes
6a2845d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>操作结果 - HF Space Manager</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            background-color: #f5f5f7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .result-card {
            background: white;
            padding: 2rem;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        .message {
            color: #1d1d1f;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .back-button {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #0071e3;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: #0077ED;
        }

        .footer {
            text-align: center;
            padding: 2rem;
            color: #86868b;
            font-size: 0.9rem;
            background: white;
            border-top: 1px solid #e5e5e7;
        }

        .footer a {
            color: #0071e3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #0077ED;
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="result-card">
            <div class="message">{{ message }}</div>
            <a href="/dashboard" class="back-button">返回控制面板</a>
        </div>
    </div>

    <footer class="footer">
        <a href="https://github.com/ssfun/hf-space-manager">HF Space Manager</a><a href="https://github.com/ssfun">ssfun</a> 构建,源代码遵循
        <a href="https://opensource.org/license/mit">MIT 协议</a>
    </footer>
</body>
</html>