-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestionnaire.html
59 lines (52 loc) · 2.45 KB
/
questionnaire.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Teleoperation Study</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.processed.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://code.jquery.com/color/jquery.color-2.1.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/6.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.3.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.3.0/firebase-database.js"></script>
</head>
<body>
<div class="container-fluid d-flex align-items-center justify-content-center my-5">
<div class="container-fixed" style="width: 1000px">
<div class="row mx-5 mt-4">
<h1 id="title"></h1>
</div>
<div class="row mx-5">
<p id="description"></p>
</div>
<div class="row mx-5">
<form id="form">
<div id="form-container">
</div>
<div class="d-flex">
<div class="ml-5 mb-3 p-2">
<button type="button" class="btn btn-primary btn-lg" id="back">Back</button>
</div>
<div class="mr-5 mb-3 ml-auto p-2">
<button type="button" class="btn btn-primary btn-lg" id="next">Next</button>
<button type="submit" class="btn btn-primary btn-lg" id="submit">Submit</button>
</div>
</div>
</form>
</div>
<div id="complete" class="mb-5">
<div class="text-center" id="mturk-key"></div>
</div>
</div>
</div>
<div class="footer"></div>
<script src="scripts/questionnaire.js"></script>
<script src="scripts/navigation.js"></script>
<script src="scripts/database.js"></script>
</body>
</html>