-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.24 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CBT Game</title>
<link rel="stylesheet" type="text/css" href="cbt.css" />
</head>
<body>
<div class="container">
<header>Welcome to the CBT game.</header>
<form action="" id="game" class="easiest">
<div id="board">
<div id="prompt"></div>
<button type="button" id="btn0" class="response"></button>
<button type="button" id="btn1" class="response"></button>
</div>
<div id="settings">
<button type="button" id="playstop">Play</button>
<div id="score">0</div>
</div>
<div id="prompts">
<table>
<thead>
<tr><th colspan="5">Common Automatic Thoughts</th></tr>
<tr>
<th>Prompt</th>
<th>Confirm</th>
<th>#Plays</th>
<th>AvgTime</th>
<th>Id</th>
</tr>
</thead>
</table>
</div>
<div id="logics"><table>
<thead>
<tr><th colspan="5">Common Problemns in Thinking</th></tr>
<tr>
<th>Title</th>
<th>Text</th>
<th>#Plays</th>
<th>AvgTime</th>
<th>Id</th>
</tr>
</thead>
</table></div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="cbt.js"></script>
</body>
</html>