spaceport/webclient/public/index.html

69 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="protofont-embedded.css">
<meta name="theme-color" content="#ffffff">
<meta
name="description"
content="Protospace Member Portal"
/>
<title>Protospace Member Portal</title>
<style>
body {
background: black;
}
.htmlmessage {
margin: 1rem;
padding: 1rem;
position: absolute;
background: black;
color: white;
}
.errormessage {
animation: showMessage 0s 6s forwards;
opacity: 0;
}
@keyframes showMessage {
to { opacity: 1; }
}
</style>
</head>
<body>
<div class="htmlmessage">
<h1>Spaceport</h1>
<p>Loading...</p>
<div class="errormessage">
<p>If you are reading this message, there's been an error.</p>
<noscript><p>You need to enable JavaScript to run this app.</p></noscript>
<p>
Try refreshing the page. If that doesn't work,<br/>
please contact Tanner for help.
</p>
</div>
</div>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>