add login page

This commit is contained in:
zoe 2022-01-29 16:04:01 +01:00
parent 58303b3769
commit 0f930b18f4
3 changed files with 107 additions and 17 deletions

View file

@ -2,12 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
type="text/css"
href="static/style.css"
media="all"
/>
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
<script src="/script.js" charset="utf-8" defer></script>
<title>Reversi Online</title>
<meta
@ -19,5 +14,18 @@
</head>
</html>
<body>
<div id="board"></div>
<div class="contentdiv">
<form>
<input
type="text"
name="roomname"
maxlength="32"
placeholder="room name"
/>
<button type="submit">let's go!</button>
</form>
</div>
<footer>
<span id="status">reversi</span>
</footer>
</body>