-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (164 loc) · 5.81 KB
/
index.html
File metadata and controls
170 lines (164 loc) · 5.81 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Task Generator - NeuroRehabLab</title>
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="js/tg.js" type="text/javascript"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6" text-center>
<div class="img-responsive col-xs-12">
<input
id="pt"
type="image"
class="button flag"
src="img/pt.png"
onClick="displayPortuguese()"
/>
<input
id="en"
type="image"
class="button flag"
src="img/en.png"
onClick="displayEnglish()"
/>
<input
id="it"
type="image"
class="button flag"
src="img/it.png"
onClick="displayItalian()"
/>
<input
id="es"
type="image"
class="button flag"
src="img/es.png"
onClick="displaySpanish()"
/>
</div>
</div>
<div class="col-sm-6">
<div class="img-responsive col-xs-12 logo">
<a href="https://neurorehablab.arditi.pt/" target="_blank"
><img src="img/logo.png" alt="NeuroRehabLab Logo" />
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 content" text-center>
<div class="img-responsive col-xs-12">
<img
src="img/abstractbrain.png"
alt="Abstract Brain Illustration"
/>
</div>
</div>
<div class="col-sm-6 content">
<h1 id="title"><strong>TASK GENERATOR</strong></h1>
<h2 id="subtitle">Personalizing Cognitive Training</h2>
<p id="description">
The NeuroRehabLab Task Generator is a software that has been
developed with the collaboration of over 20 health professionals
that uses computational models of cognitive function to deliver a
highly personalized training to each individual. The tasks created
with the NeuroRehabLab Task Generator are generated procedurally,
that is, they are always different every time they are created.
</p>
<p id="appURL" hidden>
http://neurorehablab.arditi.pt/TaskGenerator/en
</p>
<div class="span12 download">
<form>
<br />
<input
id="execute"
type="button"
class="button btn"
value="Task Generator"
onClick="goToApp()"
/>
<br />
<a
id="other_1"
class="other"
href="javascript:location.href = appURL_other_1;"
>Click here for the portuguese version</a
>
<br />
<a
id="other_2"
class="other"
href="javascript:location.href = appURL_other_2;"
>Click here for the italian version</a
>
<br />
<a
id="other_3"
class="other"
href="javascript:location.href = appURL_other_3;"
>Click here for the spanish version</a
>
<br />
</form>
</div>
<div class="info">
<a
id="manual"
class="manual"
href="javascript:location.href = manualURL;"
>Technical Manual (portuguese only)</a
>
<br />
<p id="thanks" class="reference">
Special thanks to Simone Timi and Francesco Semprebon for the
italian translation, and to Nicole Grasset for the spanish
translation.
</p>
<p id="ref" class="reference">
If you use this software please cite this reference: Faria, A.L.,
& Bermúdez i Badia, S. (2015). Development and evaluation of a
web-based cognitive task generator for personalized cognitive
training: a proof of concept study with stroke patients. In REHAB
2015: 3rd Workshop on ICTs for improving Patients Research
Techniques Proceedings. Lisbon, Portugal. ACM.
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div
class="text-center col-md-6 col-md-offset-3 col-lg-offset-0 col-lg-12"
>
<div class="footer">
<h4> </h4>
Copyright © 2019 · All Rights Reserved ·
<a href="http://neurorehablab.arditi.pt/">NeuroRehabLab</a>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
</body>
</html>