mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
30 lines
673 B
HTML
30 lines
673 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
|
|
<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 class="contentdiv">
|
|
<form>
|
|
<input
|
|
maxlength=64"
|
|
type="text"
|
|
name="roomname"
|
|
placeholder="room name"
|
|
/>
|
|
<button type="submit">let's go!</button>
|
|
</form>
|
|
</div>
|
|
<footer>
|
|
<span id="status">reversi</span>
|
|
</footer>
|
|
</body>
|