Files
OpenFrontIO/src/client/index.html
T
2024-09-08 20:21:39 -07:00

46 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenFront (ALPHA)</title>
</head>
<body>
<div class="content">
<h1>OpenFront.io</h1>
<h2>(v0.3.6)</h2>
<div id="username-container">
<input type="text" id="username" placeholder="Enter your username">
</div>
<div id="lobbies-container">
<button id="lobby-button" class="lobby-button">
<div id="lobby-name" class="lobby-name"></div>
<div id="lobby-timer" class="lobby-timer"></div>
<div id="player-count" class="player-count"></div>
</button>
</div>
<h3 id="next-game"> </h3>
</div>
<style>
body {
visibility: hidden;
opacity: 0;
}
</style>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
document.body.style.visibility = 'visible';
document.body.style.opacity = 1;
});
</script>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "03d93e6fefb349c28ee69b408fa25a13"}'></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>