-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
68 lines (50 loc) · 1.54 KB
/
Copy pathmain.html
File metadata and controls
68 lines (50 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Main</title>
<script src="js/jquery-3.2.1.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="role">
<div id="roledisplay">You are a ...</div>
<!--Populates based on current discipline/role-->
<div id="timer">
<!--Timer to time interaction -->
Time Taken: 0h 0m 0s
</div>
<div id="qa">
<div id="question">
This is but a regular question, disguised as a special one. It is not actually special, just really weird.
</div>
<div id="answer">
</div>
<button id="subanswer" onclick="submitAnswer();">
Submit Answer
</button>
</div>
</div>
<div id = "comms">
<div id="display">
<!--Main communications display-->
Spaceman [00:00] - We space now <br \>
Tomorrowman [00:01] - No we space tomorrow
</div>
<div id="contributors">
<!--List of contributors-->
<strong>Contributors</strong> <br \>
IT Person <br \>
Psych Person
</div>
</div>
<div id="chat">
<textarea id="mess" max-length="30000" placeholder="talk to me"></textarea>
<button id="send" onclick="send();">Send</button>
</div>
<div id="overlay">
<!--"Win" screen overlay based on role-->
</div>
</body>
<script src="js/main.js"></script>
</html>