-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
48 lines (43 loc) · 1.72 KB
/
404.html
File metadata and controls
48 lines (43 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TTCLoadController</title>
<base href="TTC1000ALoadController" />
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/dark-theme.css" />
<link rel="icon" type="image/png" href="ttclogo.png" />
<link href="TTCLoadController.styles.css" rel="stylesheet" />
</head>
<body>
<div id="app">
<div class="ttc-loading-screen">
<div class="ttc-loading-container">
<div class="ttc-logo-section">
<img src="ttclogo.png" alt="TTC Logo" class="ttc-logo-image" />
<h1 class="ttc-title">TTC</h1>
<h2 class="ttc-subtitle">Load Controller</h2>
</div>
<div class="ttc-loading-indicator">
<div class="ttc-progress-bar">
<div class="ttc-progress-fill"></div>
</div>
<div class="ttc-loading-text">Initializing</div>
</div>
</div>
</div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="." class="reload">Reload</a>
<span class="dismiss">🗙</span>
</div>
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script src="_content/Radzen.Blazor/Radzen.Blazor.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<script src="js/serial.js"></script>
<script src="js/fileExport.js"></script>
<script src="brotliloader.min.js" type="module"></script>
</body>
</html>