1 files changed, 36 insertions, 0 deletions
diff --git a/testFrontend/SafeNSound.Frontend/wwwroot/index.html b/testFrontend/SafeNSound.Frontend/wwwroot/index.html
new file mode 100644
index 0000000..306b7be
--- /dev/null
+++ b/testFrontend/SafeNSound.Frontend/wwwroot/index.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>SafeNSound.Frontend</title>
+ <base href="/" />
+ <link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css" />
+ <link rel="stylesheet" href="css/app.css" />
+ <link rel="icon" type="image/png" href="favicon.png" />
+ <link href="SafeNSound.Frontend.styles.css" rel="stylesheet" />
+ <link href="manifest.webmanifest" rel="manifest" />
+ <link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
+ <link rel="apple-touch-icon" sizes="192x192" href="icon-192.png" />
+</head>
+
+<body>
+ <div id="app">
+ <svg class="loading-progress">
+ <circle r="40%" cx="50%" cy="50%" />
+ <circle r="40%" cx="50%" cy="50%" />
+ </svg>
+ <div class="loading-progress-text"></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"></script>
+ <script>navigator.serviceWorker.register('service-worker.js');</script>
+</body>
+
+</html>
|