-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
114 lines (78 loc) · 3.69 KB
/
index.php
File metadata and controls
114 lines (78 loc) · 3.69 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
<!DOCTYPE html>
<html>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="PPPP/css/bootstrap.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<body>
<div class="container">
<?
include 'PPPP/nav.php';
?>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Welcome</h3>
</div>
<div class="panel-body">
Thank you for agreeing to take part in our study.
The study consists of three sections.
<ul>
<li> An initial survey </li>
<li> An interactive learning session </li>
<li> A short exit survey </li>
</ul>
This study is part of the Graduate Operating Systems course at the University of Notre Dame (CSE 60461).
If at any time you have any questions, please do not hesitate to get in touch. You can email any of the group members
listed below.
If halfway through the study you decide that you do not wish to participate, simply close the window, we will discard any data
from the initial survey that does not map to data from the post survey.
<br>
Project team members email addresses: [jdebened, shutt, lfaust, aliu1, nkremerh] [at] nd.edu
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">What will happen to my data?</h3>
</div>
<div class="panel-body">
Data collected in this study will be used only in the context of the Graduate Operating Systems course at the University of Notre Dame.
Your Notre Dame username will be collected as part of the study. This will only be used to match data together and will not be used in
conjuction with your answers.
No data in our final write up will involve your usernames and will all be de-personalized.
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">How long will it take?</h3>
</div>
<div class="panel-body">
You may take as long as you like, but we imagine you will spend around 20-30 minutes.
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Summary</h3>
</div>
<div class="panel-body">
<ul>
<li>Clicking "Begin" will take you to a short survey </li>
<li>Then click the link at the end of the survey go through the study </li>
<li>Upon completion of the session you will be asked to take another brief survey</li>
<li>Data from this study will only be used in the context of the Graduate Operating Systems class at the University of Notre Dame </li>
<li>Your usename is stored to match data from the two tests, it will not be used in conjuction with the data </li>
</ul>
</div>
</div>
<div class="row">
<div class="row">
<div class="col-md-10"></div>
<div class="col-md-2">
<a href = "https://docs.google.com/a/nd.edu/forms/d/1o_XJFPATvyWi-82IVFHGMXgSkecsyuQdh7bOrdavbDE/viewform"><button type="button" class="btn btn-lg btn-primary">Begin!</button></a>
</div>
</div>
</div>
</div>
</body>
</html>