2022-01-28 20:47:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2022-01-29 15:04:01 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
|
2022-01-28 20:47:29 +00:00
|
|
|
<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>
|
2022-01-29 15:04:01 +00:00
|
|
|
<div class="contentdiv">
|
|
|
|
<form>
|
|
|
|
<input
|
2022-01-29 21:26:32 +00:00
|
|
|
maxlength=64"
|
2022-01-29 15:04:01 +00:00
|
|
|
type="text"
|
|
|
|
name="roomname"
|
|
|
|
placeholder="room name"
|
|
|
|
/>
|
|
|
|
<button type="submit">let's go!</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<span id="status">reversi</span>
|
|
|
|
</footer>
|
2022-01-28 20:47:29 +00:00
|
|
|
</body>
|