-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
110 lines (106 loc) · 4.18 KB
/
test.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<head>
<title>WWTBAM by Andy Crush</title>
<link rel="stylesheet" type="text/css" href="test.css">
<script src="test.js"></script>
</head>
<h1><img src="http://code.chuoi.info/millionaire/Millionaire.png" width="100px" height="100px"></h1>
<h1>Who wants to be a millionaire</h1>
<body>
<div id="each-question" class="row">
<table>
<thead>
<tr>
<div id="question"> <span id="question-number"></span>
<span id="display-question"></span>
</div>
<tr>
</thead>
<tbody id="sellector">
<tr>
<td>
<div id="boxA" class="box"></div>
</td>
<td>
<div id="boxB" class="box"></div>
</td>
</tr>
<tr>
<td>
<div id="boxC" class="box"></div>
</td>
<td>
<div id="boxD" class="box"></div>
</td>
</tr>
</tbody>
</table>
<div class="form-group" id="board-button">
<button class="btn btn-info" id="submit-answer">Confirm Answer</button>
<button class="btn btn-default" id="withdraw-button">Withdraw</button>
<button class="btn btn-info" id="help5050-button">50 : 50</button>
<button class="btn btn-primary" id="helpSurvey-button">Survey</button>
</div>
<div class="form-group" id="result-button">
<button class="btn btn-success" id="next-question">Next Question</button>
<button class="btn btn-danger" id="restart-game">Restart Game</button>
</div>
<div class="notice">
<div class="alert" id="alert"></div>
</div>
</div>
<br>
<div id="container" class="row">
<div id="question-form">
<div class="col-md-12">
<div id="page">
<label> <span id="number">Question 1</span>
</label>
<input type="text" class="form-control" id="inputQ" value="">
</div>
</div>
<div id="answer-input" class="row">
<div class="col-md-3">
<label>Answer A</label>
<input type="text" class="form-control" id="a" value="">
</div>
<div class="col-md-3">
<label>Answer B</label>
<input type="text" class="form-control" id="b" value="">
</div>
<div class="col-md-3">
<label>Answer C</label>
<input type="text" class="form-control" id="c" value="">
</div>
<div class="col-md-3">
<label>Answer D</label>
<input type="text" class="form-control" id="d" value="">
</div>
</div>
<div id="answer" class="row">
<label>Answer</label>
<select class="form-control" id="input-letter">
<option value="A" selected>A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
</div>
</div>
<div class="row" id="button">
<button class="btn btn-default" id="prev-button">Save & Back</button>
<button class="btn btn-primary" id="next-button">Save & Next</button>
<button class="btn btn-danger" id="reset-button">Reset Form</button>
</div>
</div>
<button class="btn btn-success" id="create-game-button">Create Game</button>
<button class="btn btn-success" id="edit-button">Edit Game</button>
<div class="raw" id="reward"></div>
<div class="raw" id="survey-region">
<div class="surveyBoard">
<div class="raw" id="chartA"></div>
<div class="raw" id="chartB"></div>
<div class="raw" id="chartC"></div>
<div class="raw" id="chartD"></div>
</div>
</div>
</body>