forked from rejetto/hfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (18 loc) · 807 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script async src='https://unpkg.com/node-forge@1.3.1/dist/forge.min.js'></script>
<title>HFS Admin-panel</title>
<script type="module" src="/src/index.ts"></script>
<link rel="icon" type="image/svg+xml" href="/hfs-logo-icon.svg" />
<link href="../frontend/fontello.css" rel="stylesheet" />
<link href="../frontend/fontello.woff2" rel="prefetch" />
</head>
<body>
<style class="removeAtBoot">@media (prefers-color-scheme: dark) { html { background-color: #000; color: #888; } }</style>
<div id="root"></div>
<script nomodule>document.getElementById('root').innerText = "Please use a newer browser"</script>
</body>
</html>