spaceport/webclient/public/index.html

69 lines
1.8 KiB
HTML
Raw Normal View History

2020-01-06 23:32:29 +00:00
<!DOCTYPE html>
<html lang="en">
2020-01-07 02:10:25 +00:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2020-01-16 02:49:09 +00:00
<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">
2022-08-23 01:01:22 +00:00
<link rel="stylesheet" href="protofont-embedded.css">
2020-01-16 02:49:09 +00:00
<meta name="theme-color" content="#ffffff">
2020-01-07 02:10:25 +00:00
<meta
name="description"
2020-01-16 02:49:09 +00:00
content="Protospace Member Portal"
2020-01-07 02:10:25 +00:00
/>
2020-01-06 23:32:29 +00:00
2020-01-16 02:49:09 +00:00
<title>Protospace Member Portal</title>
<style>
body {
background: black;
}
.htmlmessage {
margin: 1rem;
padding: 1rem;
position: absolute;
background: black;
color: white;
2022-01-22 00:45:29 +00:00
}
.errormessage {
2022-04-10 07:11:53 +00:00
animation: showMessage 0s 6s forwards;
opacity: 0;
}
@keyframes showMessage {
to { opacity: 1; }
}
</style>
2020-01-07 02:10:25 +00:00
</head>
<body>
<div class="htmlmessage">
<h1>Spaceport</h1>
2022-01-22 00:45:29 +00:00
<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/>
2022-04-10 07:11:53 +00:00
please contact Tanner for help.
2022-01-22 00:45:29 +00:00
</p>
</div>
</div>
2020-01-07 02:10:25 +00:00
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
2020-01-06 23:32:29 +00:00
2020-01-07 02:10:25 +00:00
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
2020-01-06 23:32:29 +00:00
2020-01-07 02:10:25 +00:00
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
2020-01-06 23:32:29 +00:00
</html>