mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
fucking sse, how do they work
This commit is contained in:
parent
ab7785ed00
commit
dce8bc5d92
7 changed files with 101 additions and 20 deletions
|
@ -1,15 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
|
||||
<script src="/script.js" charset="utf-8" defer></script>
|
||||
<script src="/join.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" />
|
||||
<link rel="icon" type="image/x-icon" href="./static/favicon.svg" />
|
||||
</head>
|
||||
</html>
|
||||
<body>
|
||||
|
|
27
templates/room.html.hbs
Normal file
27
templates/room.html.hbs
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
|
||||
<script src="/room.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/favicon.svg" />
|
||||
</head>
|
||||
</html>
|
||||
<body>
|
||||
<div class="hidden">
|
||||
<input id="player1" value="{{player1}}">
|
||||
<input id="roomname" value="{{roomname}}">
|
||||
<input id="token" value="{{token}}">
|
||||
</div>
|
||||
<div class="contentdiv">
|
||||
</div>
|
||||
<footer>
|
||||
<span id="status">reversi</span>
|
||||
</footer>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue