-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 2.1 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 2.1 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/chessboard-1.0.0.min.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.1/axios.min.js"></script>
<script src="js/chessboard-1.0.0.js"></script>
<title>Chess Interface</title>
</head>
<body>
<div class="container">
<div class="item game">
<div class="item board">
<div id="board-object"></div>
</div>
<div class="timers">
<div id="timer1">00:00</div>
<div id="timer2">00:00</div>
</div>
<div class="buttons">
<button id="setButton" class="button">START</button>
<button id="clearButton" class="button">CLEAR</button>
</div>
</div>
<div class="item info">
<div class="item info-tab history-white">
<header style="font-family:'Segoe UI', sans-serif; font-size: 20px; padding: 10px"><strong>WHITE</strong></header>
</div>
<div class="item info-tab history-black">
<header style="font-family:'Segoe UI', sans-serif; font-size: 20px; padding: 10px"><strong>BLACK</strong></header>
</div>
<div class="item info-tab log">
<header style="font-family:'Segoe UI', sans-serif; font-size: 20px; padding: 10px"><strong>LOG</strong></header>
<div id="chatContainer">
<div id="log"></div>
<input type="text" id="messageInput" placeholder="Type your message..."/>
</div>
</div>
</div>
</div>
<script type="module" src="js/mainboard.js"></script>
<script src="js/log.js"></script>
<script src="js/boardpos.js"></script>
<script src="js/timer.js"></script>
</body>
</html>