File size: 6,402 Bytes
2b02e3d
 
 
a2fa378
ab0a6f3
a2fa378
 
ab0a6f3
 
 
 
 
 
 
 
 
 
 
 
 
a2fa378
 
 
ab0a6f3
a2fa378
 
ab0a6f3
a2fa378
 
ab0a6f3
a2fa378
 
ab0a6f3
a2fa378
 
ca7742f
 
 
 
 
a2fa378
 
ab0a6f3
 
 
ca7742f
 
 
 
 
 
 
ab0a6f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2fa378
 
 
ab0a6f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2fa378
 
ab0a6f3
a2fa378
 
 
ab0a6f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a2fa378
 
 
 
 
ab0a6f3
a2fa378
ab0a6f3
a2fa378
ab0a6f3
a2fa378
 
ab0a6f3
 
 
 
 
 
 
 
 
a2fa378
 
 
ca7742f
d96afbc
ca7742f
 
 
 
 
ab0a6f3
 
a2fa378
 
 
ab0a6f3
 
 
 
 
 
 
 
 
 
 
 
 
 
555ef5e
 
 
 
 
 
 
ab0a6f3
 
 
a2fa378
d96afbc
2b02e3d
 
ca7742f
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Error Generating AI SBOM</title>
    <style>
        body { 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
            margin: 0; 
            padding: 0; 
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        .container { 
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styling */
        .header {
            background-color: #ffffff;
            padding: 15px 20px;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        .header img {
            height: 60px;
            margin-right: 15px;
        }
        /* Added header-content div for layout */
        .header .header-content {
            display: flex;
            flex-direction: column; /* Stack title and count */
        }
        .header h1 {
            margin: 0;
            font-size: 28px;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 5px; /* Space between title and count */
        }
        /* Added style for sbom-count */
        .header .sbom-count {
            font-size: 14px;
            color: #555;
            font-weight: 500;
        }
        
        /* Content styling */
        .content-section {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .content-section h2 {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 22px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .content-section p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }
        
        /* Error styling */
        .error-section {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .error-section h2 {
            color: #e74c3c;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 22px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .error-message {
            background-color: #ffebee;
            border-left: 4px solid #e74c3c;
            padding: 15px;
            border-radius: 4px;
            margin: 20px 0;
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }
        
        /* Button styling */
        .button {
            display: inline-block;
            padding: 12px 20px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.3s;
            margin-bottom: 20px;
        }
        
        .button:hover {
            background-color: #2980b9;
            text-decoration: none;
        }
        
        /* Support section styling */
        .support-section {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .support-section h2 {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 22px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }
        
        .support-section p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }
        
        a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        /* Footer styling */
        .footer {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-size: 14px;
            margin-top: 30px;
        }
    </style>
</head>
<body>
    <!-- Header with logo, title, and SBOM count -->
    <div class="header">
        <a href="https://aetheris.ai/" target="_blank">
            <img src="https://huggingface.co/spaces/aetheris-ai/aibom-generator/resolve/main/templates/images/AetherisAI-logo.png" alt="Aetheris AI Logo">
        </a>
        <!-- Added header-content div -->
        <div class="header-content">
            <h1>AI SBOM Generator</h1>
        </div>
    </div>
    
    <div class="container">
        <!-- Error Section -->
        <div class="error-section">
            <h2>Error Generating AI SBOM</h2>
            <div class="error-message">
                <p>{{ error }}</p>
            </div>
            <a href="/" class="button">Try Again</a>
        </div>
        
        <!-- Support Section -->
        <div class="support-section">
            <h2>Need Help?</h2>
            <p>If the error persists, please log an issue on our <a href="https://github.com/aetheris-ai/aibom-generator/issues" target="_blank" rel="noopener noreferrer">GitHub issues page</a>. Include the error message above and any additional details that might help us troubleshoot the problem.</p>
        </div>
      
        <!-- Info Section -->
        <div class="content-section" style="text-align: center;>
            <!-- Display the SBOM count -->
            <div class="sbom-count">🚀 Generated AI SBOMs using this tool: <strong>{{ sbom_count if sbom_count else 'N/A' }}</strong></div>        
        </div>
  
        <!-- Footer -->
        <div class="footer">
            <p>© 2025 AI SBOM Generator | Powered by Aetheris AI</p>
        </div>
    </div>
</body>
</html>