-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (86 loc) · 3.1 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="generator" content="">
<title>Spatial navigation task</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="row" style="margin-top: 30px;">
<div class="col">
<h1>Scoring of the spatial navigation task</h1>
<p>This webpage is used as an easy scripting solution to compute scores from a log file produced by our
"Doellar" test. No data is uploaded to a server. All computations are done on your local computer.</p>
</div>
</div>
<div class="row" style="margin-top: 20px;">
<div class="col-4">
<form>
<div class="mb-3">
<label for="InputParticipantID" class="form-label">Participant ID</label>
<input type="text" class="form-control" id="InputParticipantID" aria-describedby="participantIDHelp">
<div id="participantIDHelp" class="form-text">Enter the participant ID used in the database.</div>
</div>
<div class="mb-3">
<label for="Event" class="form-label">Event name</label>
<input type="text" class="form-control" id="Event" aria-describedby="eventHelp">
<div id="eventHelp" class="form-text">Enter the event name used in the database.</div>
</div>
</form>
</div>
<div class="col">
<div style="border: 1px solid lightgrey; border-radius: 3px; width: 100%; height: 200px; position: relative;">
<div style="text-align: center; top: 50%; height: 100%; width: 100%; color: grey;" id="drop-here">
Drag and drop here
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col table-responsive"
style="height: 200px; overflow-y: auto; border: 1px; solid grey; border-radius: 3px;">
<p><span id="stats"></span></p>
<table class="table table-striped table-sm table-hover table-bordered">
<caption>Results</caption>
<thead id="thead">
<tr>
<th>Object</th>
<th>Accuracy placed</th>
</tr>
</thead>
<tbody id="tbody" style="max-height: 400px; overflow-y: auto;">
</tbody>
</table>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col">
<textarea id="jsonV" cols="80" rows="10"></textarea>
</div>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery-3.6.1.min.js"></script>
<script src="js/all.js"></script>
</body>
</html>