-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (60 loc) · 3.25 KB
/
index.html
File metadata and controls
65 lines (60 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<title>BM Tracking</title>
<!--JS Scripts-->
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/jquery"></script>
<script src="https://surveyjs.azureedge.net/1.7.4/survey.jquery.min.js"></script>
<!--Required Meta Tags-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--Bootstrap Style Sheet-->
<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">
</head>
<body>
<!--Page-wide div for bootstrap container-->
<div class="container">
<!--Webpage starts here-->
<div id="pageHead" class="d-flex flex-column">
<h1 class="d-flex justify-content-center">British Museum Visitor Evaluation Tool</h1>
</div><hr>
<!--Div for floor plan and location marking-->
<div id="floorplan" class="d-flex flex-column">
<h2 class="d-flex justify-content-center">Floorplan</h2>
<div id="floorplan-image" class="d-flex justify-content-center">
<!--Floor plan image dynamically added here-->
</div>
</div>
<!--Div for displaying/entering information to be added to uploads-->
<div id="information" class="d-flex flex-column">
<!--Indicator for current display-->
<h5 id="information-display" class="d-flex justify-content-center">Current Display: N/A</h5>
<!--Field for current observer/group name-->
<div class="d-flex flex-row justify-content-center">
<h5>Current Name:</h5><input type="text" id="information-name">
</div>
</div><hr>
<!--Div for observations/exit interview-->
<div id="obserview" class="d-flex flex-column">
<div id="obserview-buttons" class="d-flex flex-row justify-content-center">
<!--Dynamically altered-->
<button id="obserview-observationbtn">Live Observations</button>
<button id="obserview-interviewbtn">Go to Exit Survey</button>
<button id="obserview-uploadbtn">Upload Results</button>
</div>
<div id="obserview-sheet" class="d-flex justify-content-center">
<!--Dynamically created-->
</div>
</div>
</div>
<!--Custom JS Scripts-->
<script type="module" src="./config.js"></script>
<script type="module" src="./obserview.js"></script>
<!--Bootstrap Scripts-->
<!--Enabling the jQuery script breaks SruveyJS due to jQuery conflicts. No adverse effects noted from commenting this out-->
<!-- <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>