gomoku/index.html

32 lines
965 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gomoku!</title>
<meta name="gameId" content="" />
<meta name="playerId" content="" />
<script
src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.6/dist/htmx.min.js"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/htmx-ext-ws@2.0.2"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="game-container" hx-ext="ws">
<div id="title-box"></div>
<div id="game-board"></div>
<div id="button-box"></div>
</div>
<script src="scripts/display-ws-connection.js"></script>
<script src="scripts/send-ws-messages.js"></script>
<script src="scripts/copy-game-link.js"></script>
<script src="scripts/handle-redirects.js"></script>
</body>
</html>