-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.html
32 lines (30 loc) · 1.07 KB
/
go.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html lang="en" style="background-color: #121212">
<head>
<title>Go LCC</title>
<script src="/vendor/jquery/jquery-2.0.3.min.js"></script>
<script src="/pengine/pengines.js"></script>
<script src="go.js"></script>
<link rel="stylesheet" href="go.css">
<link rel="icon" href="images/favicon-32x32.png" type="image/png" sizes="32x32">
</head>
<body class="turnBlack">
<div class="mainPanel">
<div class="leftBar">
<div class="turnPanel">
<div class="turnLab" style="color: white">Player </div>
<div class="playerTurn"></div>
</div>
<button id="passBtn" class="passBtn">
Pass
</button>
<button id="resetBtn" class="resetBtn">
Reset
</button>
</div>
<div class="board">
<div id="boardCells"></div>
<div id="gridCells"></div>
</div>
</div>
</body>
</html>