-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 2.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/darkly/bootstrap.min.css"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
defer
></script>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script src="scripts/clueNoteTaker.js" defer></script>
<link rel="stylesheet" href="styles/styles.css" />
<title>Clue Note-Taker</title>
</head>
<body>
<div class="container mt-3">
<h1>Clue Note-Taker</h1>
<div class="row" id="contentRow">
<div class="col-sm-5" id="tableWrapper">
<table id="mainNotesTable" class="m-3">
<thead>
<tr id="playerRow">
<th>Players</th>
</tr>
</thead>
<tbody id="suspects"></tbody>
<tbody id="items"></tbody>
<tbody id="locations"></tbody>
</table>
<div id="buttonBox" class="col-sm-3">
<div id="restingButtonGroup">
<button
class="btn btn-success m-3 p-2"
type="button"
id="newGuessButton"
>
New Guess
</button>
</div>
<div id="inProgressButtonGroup">
<button
class="btn btn-success m-3 p-2"
type="button"
id="passGuessButton"
>
Pass
</button>
<button
class="btn btn-warning m-3 p-2"
type="button"
id="refuteGuessButton"
>
Refute
</button>
<button
class="btn btn-danger m-3 p-2"
type="button"
id="cancelGuessButton"
>
Cancel
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>