You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
782 B
HTML
29 lines
782 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<title>cardGame</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrap">
|
|
<p>Rooms will not be HTML buttons eventually, but for now...</p>
|
|
<button onclick="requestRooms()" class="dib">Get Rooms</button>
|
|
<ul id="joinRoomButtons" class="joinRoomButtons dib" style="display:inline;">
|
|
</ul>
|
|
<button onclick="requestCreateRoom()" style="background:#EEE">Create Room</button>
|
|
</div>
|
|
<canvas id="canvas" width="1000" height="600"></canvas>
|
|
<button onclick="untapAll()">Untap all</button>
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="/shapes.js"></script>
|
|
<script src="/board.js"></script>
|
|
<script src="/main.js"></script>
|
|
</body>
|
|
|
|
</html>
|
|
|