-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 2.15 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Othello</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="wrapper">
<div class="panel">
<div class="panel-section">
<div id="player-one-info" class="m-b-4 player-info">
<h1 id="player-one-name" class="title"></h1>
<h2 id="player-one-tile-count" class="m-b-2">
<img class="marker" src="assets/othello-marker-black.svg">
<span></span>
</h2>
<h3 class="timer" id="player-one-timer">Time: <span></span></h3>
</div>
<div id="player-two-info" class="player-info">
<h1 id="player-two-name" class="title"></h1>
<h2 id="player-two-tile-count" class="m-b-2">
<img class="marker" src="assets/othello-marker-white.svg">
<span></span>
</h2>
<h3 class="timer" id="player-two-timer">Time: <span></span></h3>
</div>
</div>
<div class="panel-section">
<h3 class="m-b-2">Time settings</h3>
<div class="radio-control">
<input id="60000" type="radio" name="time" value="60000" checked>
<label for="60000">1 minute</label>
</div>
<div class="radio-control">
<input id="120000" type="radio" name="time" value="120000">
<label for="120000">2 minutes</label>
</div>
<div class="radio-control">
<input id="300000" type="radio" name="time" value="300000">
<label for="300000">5 minutes</label>
</div>
</div>
<div class="panel-section">
<button id="new-game" class="btn btn-main m-b-4" type="button">New game</button>
<button id="start-game" class="btn btn-complement" type="button">Start game</button>
</div>
</div>
<div id="board"></div>
</div>
<div class="alert-box"></div>
<script src="./index.js"></script>
</body>
</html>