mirror of
https://github.com/PhaseII-eAmusement-Network/PhaseWeb3-Vue.git
synced 2026-04-24 06:48:56 -05:00
32 lines
778 B
HTML
32 lines
778 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<link rel="icon" href="/favicon.png">
|
|
<title>PhaseWeb 3</title>
|
|
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
|
|
<style>
|
|
body {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1f2937;
|
|
}
|
|
}
|
|
</style>
|
|
</html>
|