basic things, get the server to run, start working on rooms

This commit is contained in:
zoe 2022-01-28 21:47:29 +01:00
parent f86e4bb9e1
commit 58303b3769
11 changed files with 4923 additions and 2 deletions

23
static/index.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
type="text/css"
href="static/style.css"
media="all"
/>
<script src="/script.js" charset="utf-8" defer></script>
<title>Reversi Online</title>
<meta
charset="utf-8"
name="viewport"
content="width=device-width, initial-scale=1"
/>
<link rel="icon" type="image/x-icon" href="./static/think.svg" />
</head>
</html>
<body>
<div id="board"></div>
</body>