-
Notifications
You must be signed in to change notification settings - Fork 1
/
faq.php
executable file
·138 lines (106 loc) · 4.71 KB
/
faq.php
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
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/include/main_func.php';
function checkCookies() {
return true;
}
$styles = array(
'h2' => 'text-align: left; padding-left: 2em;',
'#qtbutton' => 'width: 88px; height: 31px; display: block; margin: 1em auto;',
'.ui-accordion-content' => 'max-width: 654px;',
'h2.ui-accordion-header a' => 'margin-left: 1em;'
);
$title = loc('FAQ');
$page = new page($title);
$page->set_menu(true);
$page->displayHead($styles);
$page->displayBody();
/****************************************************
* FAQ menu
***************************************************/
?>
<div id="faq">
<h2><a href="#">Who runs this website?</a></h2>
<div>
<p>The University of Glasgow School of Psychology and Institute of Neuroscience and Psychology.</p>
<p>Please cite Experimentum in any research using the platform:</p>
<p>Lisa DeBruine, Rebecca Lai, Benedict Jones, Rifah Abdullah, Gaby Mahrholz. (2020).
Experimentum (Version v.0.2). Zenodo.
<a href="http://doi.org/10.5281/zenodo.2634355">doi:10.5281/zenodo.2634355</a></p>
</div>
<h2><a href="#">How do you use cookies?</a></h2>
<div>
<p>We save one “cookie” to your browser when you visit our site. This
tracks your session; we need it so you don't have to log in on every single
page. It is only ever used on our website and only contains a session number
that our server uses to confirm your login. We are committed to using cookies
fairly and in accordance with your privacy rights.</p>
</div>
<h2><a href="#">Can I change my password or information?</a></h2>
<div>
<p>Yes. Just click on <a href="/my">My Account</a>. You can change your username
to any unused name. This will not affect the experiments you've already done.
The form allows you to change your password. You can also change your birthdate
or sex if you entered them incorrectly when registering. Having accurate
information about your age and sex are very important to our scientific research.</p>
</div>
<h2><a href="#">Can I retrieve my password if I forgot it?</a></h2>
<div>
<p>Only if you are a researcher and your email address is stored with your account.
We protect user anonymity, so we do not collect email or IP addresses. Therefore,
there is no way to securely retrieve your account details. If you are participating
in a long-term study, please contact the experimenter. Otherwise, you can just
make a new account.</p>
</div>
<h2><a href="#">Where do you get your great icons?</a></h2>
<div>
<p>We use the free version of <a href="https://linearicons.com/">Linearicons</a>
by <a href="https://perxis.com">Perxis</a>, which is licensed under the
CC BY-SA 4.0 license.</p>
</div>
<h2><a href="#">Do I need a particular browser to view your website?</a></h2>
<div>
<p>We have worked hard to make sure that this website is accessible to
all people using visual browsers (we are working on better support for
audio-only browsers to access the parts of this website that do not
require the viewing of images). If the website looks strange in your
favourite browser, please e-mail us and let us know. If you are looking for
a new web browser, <a href="http://www.getfirefox.com/">FireFox</a> is an
excellent free browser for Windows, Mac OS X and Linux.</p>
</div>
<h2><a href="#">Why do I need JavaScript enabled to do experiments and demos?</a></h2>
<div>
<p>We use JavaScript to perform some calculations needed to randomise trial order
which prevents you having to load a new web page for every trial and greatly
speeds up the experiments. It also allows us to collect more accurate data on
how long the experiments take.</p>
</div>
<h2><a href="#">Can you host my experiment?</a></h2>
<div>
<p>Sorry, we cannot host your experiments unless you are a member of the
University of Glasgow School of Psychology. However, the code used to run
this website is open source at
<a href="https://github.com/debruine/experimentum">GitHub</a>.</p>
</div>
<h2><a href="#">What do we do with your data?</a></h2>
<div>
<p>All of your responses are confidential and anonymous. Your data are
stored on a secure server and this website will never ask for identifying data,
such as your email address, in a way that can link it to your user data. If you
have any concerns about the security or the use of your data, do not hesitate
to contact us.</p>
</div>
</div> <!-- END OF FAQ -->
<!--*************************************************-->
<!-- !Javascripts for this page -->
<!--*************************************************-->
<script>
$(function() {
$('#faq').accordion({
autoHeight: false,
active: false
});
});
</script>
<?php
$page->displayFooter();
?>