-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
118 lines (110 loc) · 4.58 KB
/
questions.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
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<!--
This file is part of CovAPP.
CovAPP is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CovAPP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CovAPP. If not, see <http://www.gnu.org/licenses/>.
Copyright 2018-2020 Dr. med. M. Sc. Alexander H. Thieme
-->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="CovAPP" />
<meta name="author" content="Thieme, AH" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="icon" href="./favicon.ico" />
<title>CovAPP</title>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<link href="css/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
<script src="css/bootstrap/dist/js/bootstrap.min.js"></script>
<link
href="css/bootstrap/dist/css/bootstrap-dialog.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="css/bootstrap/dist/js/bootstrap-dialog.min.js"></script>
<link href="css/bootstrap/example/jumbotron-narrow.css" rel="stylesheet" />
<link href="css/covapp.css" rel="stylesheet" />
<link href="css/bootstrap/example/jumbotron-narrow.css" rel="stylesheet" />
<script type="text/javascript" src="js/XMLWriter.js"></script>
<script type="text/javascript" src="js/check.js"></script>
<script type="text/javascript" src="js/ui.js"></script>
<script type="text/javascript" src="js/qr.js"></script>
<script type="text/javascript" src="js/questions.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<div class="container-fluid text-left">
<!-- <div class="row text-right">
<label id="labelNumQuestion"></label>
</div> -->
<div class="row">
<h2><label id="labelQuestionText"></label></h2>
<div id="question_comment"></div>
</div>
<form class="form-horizontal" id="radiobuttons">
<fieldset>
<div class="radio">
<label id="option1"><input type="radio" id="roption1"/></label>
</div>
<div class="radio">
<label id="option2"><input type="radio" id="roption2"/></label>
</div>
<div class="radio">
<label id="option3"><input type="radio" id="roption3"/></label>
</div>
<div class="radio">
<label id="option4"><input type="radio" id="roption4"/></label>
</div>
<div class="radio">
<label id="option5"><input type="radio" id="roption5"/></label>
</div>
<div class="radio">
<label id="option6"><input type="radio" id="roption6"/></label>
</div>
<div class="radio">
<label id="option7"><input type="radio" id="roption7"/></label>
</div>
<div class="radio">
<label id="option8"><input type="radio" id="roption8"/></label>
</div>
<div class="radio">
<label id="option9"><input type="radio" id="roption9"/></label>
</div>
<div class="radio">
<label id="option10"
><input type="radio" id="roption10"
/></label>
</div>
</fieldset>
<div class="form-group">
<label class="control-label col-sm-3" id="labelText" for></label>
<div class="col-sm-9">
<input type="text" class="form-control" id="inputText" />
</div>
</div>
</form>
<button id="next" class="btn btn-lg btn-primary btn-block">
Nächste Frage
</button>
</div>
</div>
<footer class="footer">
<p>© 2020 CovAPP</p>
</footer>
</div>
</body>
</html>