-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
110 lines (92 loc) · 3.31 KB
/
signup.html
File metadata and controls
110 lines (92 loc) · 3.31 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
<!DOCTYPE html>
<html>
<head>
<!-- Page setup -->
<meta charset="utf-8">
<title>Predicting pain in CRPS study portal</title>
<meta name="description" content="STREAM - study portal">
<meta name="author" content="Dr Maria Niedernhuber (University of Zurich, University of Cambridge), Joaquim Streicher (University of Cambridge)">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
width: 100%;
height: 100%;
margin: 0;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr;
-webkit-column-gap: 10px; /* Chrome, Safari, Opera */
-moz-column-gap: 10px; /* Firefox */
column-gap: 10px;
padding: 10px;
margin-left: 1rem;
}
.container div {
width: 100%;
display: inline-block;
background: white;
border: 2px solid black;
box-sizing: border-box;
text-align: center;
margin-bottom: 10px;
}
.container img {
width: 25%;
height: auto;
vertical-align: middle;
}
.topnav {
overflow: hidden;
background-color: #30795d;
}
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: white;
}
.topnav a.active {
background-color: #95e6b4;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="instructions.html">Instructions</a>
<a href="eegheadband.html">Using the Dreem EEG headband</a>
<a class="active" href="signup.html">Start of study</a>
<a href="signout.html">End of study</a>
<a href="contact.html">Contact</a>
</div>
<div style="padding-left:16px">
<h2>Signing up </h2>
<p>Before you start the study, please fill out the questionnaires below.</p>
</div>
<div class="container">
<div><a href="https://jatos.mindprobe.eu/publix/KpEE7PO2xhF"><img src="img/BDI.png" alt="BDI" style="width:185.5px;height:206.5px;"></a></div>
<div><a href="https://jatos.mindprobe.eu/publix/ODqJU72EwIy"><img src="img/AQ-10.png" alt="AQ-10" style="width:185.5px;height:206.5px;"></a></div>
<div><a href="https://jatos.mindprobe.eu/publix/N8oT3mXc651"><img src="img/SPQ-10.png" alt="SPQ-10" style="width:185.5px;height:206.5px;"></a></div>
<div><a href="https://jatos.mindprobe.eu/publix/GucKNuptPEv"><img src="img/PSQI.png" alt="PSQI" style="width:185.5px;height:206.5px;"></a></div>
<div><a href="https://jatos.mindprobe.eu/publix/1TOZGfkkK3A"><img src="img/STAI.png" alt="STAI" style="width:185.5px;height:206.5px;"></a></div>
<div><a href="https://jatos.mindprobe.eu/publix/IzM5bY4rdSO"><img src="img/PSQ.png" alt="PSQ" style="width:185.5px;height:206.5px;"></a></div>
<meta name="viewport" content="width=device-width, initial-scale=1">
</div>
</head>
</html>