This repository has been archived by the owner on Jun 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
intro.html
executable file
·107 lines (103 loc) · 4.23 KB
/
intro.html
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
<div ng-if="introCtrl.begin">
<p class="page-title">Group Name</p>
<h1>Thank you for your interest in becoming a Batea Scholar</h1>
<div class="main">
<div class="content">
<p>
Batea is a Chrome Extension that allows you to donate
specific de-identified portions of your browser history
to the public in order to help make medical Wikipedia
articles better.
</p>
<p>
This project has a specific focus on improving clinical
content on Wikipedia. We especially seek medical students
to help us, but we also invite doctors, nursers,
patients, and the general public to join as well!
</p>
<p>
Batea (which is named for a gold-panning tool) works by
detecting when you visit certain pages (clinical Wikipedia
pages or other clinical-related websites). This triggers
the contribution of the browser history before, and after
these page visits, to the Batea main server. This includes
the original search page you visited and the search term
you were using.
</p>
<p>
The Batea server will de-identify this history (so that
your identity is not associated with the data) and then
release this data publicly in order for researchers and
Wikipedians to use the data to improve the content
quality on Wikipedia.
</p>
<p>
Batea researchers may share identified data, but only
with other researchers or research institutions (such
as universities) under appropriate non-disclosure
agreements.
</p>
</div>
<div class="video-container">
<img src="assets/computer_scholar_425x282.png" alt="Batea Scholar">
<!-- <video src="#"></video> -->
</div>
</div>
<div class="btn-container">
<button class="bottom-btn" ng-click="introCtrl.beginProcess()">
Begin the consent process to become a Scholar
</button>
</div>
</div>
<div ng-if="introCtrl.showEligibility">
<p class="page-title">Eligibility</p>
<div class="main">
<div class="content">
<p>
Batea is a clinical browser history research project.
</p>
<p>
Anyone can contribute data anonymously, but only users
who are over the age of 18 and speak English are allowed
to participate as Scholars and associate their identities
with their data contributions.
</p>
<div>
<label>How old are you?</label>
<div>
<input type="radio" ng-model="introCtrl.form.formData.atLeast18" ng-value="introCtrl.formFalse">
I am under 18 years old
</div>
<div>
<input type="radio" ng-model="introCtrl.form.formData.atLeast18" ng-value="introCtrl.formTrue">
I am over 18 years old
</div>
</div>
<div>
<label>Do you speak English?</label>
<div>
<input type="radio" ng-model="introCtrl.form.formData.english" ng-value="introCtrl.formFalse">
I do not speak English
</div>
<div>
<input type="radio" ng-model="introCtrl.form.formData.english" ng-value="introCtrl.formTrue">
I speak English
</div>
</div>
</div>
</div>
<div class="btn-container">
<button class="bottom-btn" ng-click="introCtrl.checkEligibility()">Submit</button>
</div>
</div>
<div ng-if="introCtrl.showNotEligible">
<p class="page-title">Not Eligible</p>
<div class="main">
<div class="content">
<p>
You must be over the age of 18 and speak English to
be an identified participant in this study.
</p>
</div>
</div>
</div>