-
Notifications
You must be signed in to change notification settings - Fork 1
/
consent.php
executable file
·40 lines (28 loc) · 1.15 KB
/
consent.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
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/include/main_func.php';
$_SESSION['return_to'] = $_SERVER['HTTP_REFERER'];
$title = loc('Informed Consent');
$page = new page($title);
$page->set_menu(true);
$page->displayHead();
$page->displayBody();
?>
<p>The studies on our website are all ethically approved by the University of
Glasgow Institute of Neuroscience and Psychology or the principal investigator's
relevant institution. Each individual study will provide specific informed consent
information at the start.</p>
<p>Please read the ‘Statement of Informed Consent’ below and indicate whether you consent.</p>
<h2>Statement of Informed Consent</h2>
<ol style='margin: 1em auto; width: 35em;'>
<li>I understand the general purpose of this website.</li>
<li>I understand that I can withdraw from a study at any time by simply closing my web browser.</li>
<li>I understand that I may skip any questions that I am uncomfortable answering.</li>
<li>I understand that my responses are anonymous.</li>
</ol>
<div class='buttons'>
<a href='/register'>I Agree</a>
<a href='/'>I Do Not Agree</a>
</div>
<?php
$page->displayFooter();
?>