Add consent page for the Security Advisor SHIELD study.

This commit is contained in:
Michael Kelly 2016-11-07 10:46:37 -08:00
Родитель 6d9de6eea6
Коммит 8e7e772f2c
6 изменённых файлов: 131 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,63 @@
<!DOCTYPE html>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Stay Safer on the Web</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/shield_study_6/main.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="title-container">
<h1 class="title">Enhance Websites</h1>
<a href="https://addons.mozilla.org/firefox/downloads/latest/shield-study-security-advisor/?src=shield-study-6"><button class="button primary large">Try Security Advisor</button></a>
</div>
<div class="content"><p>Mozilla takes your security and privacy seriously and wants to know if there are ways we can keep you even safer on the web. Participating in this study will help us find out!</p>
<h2 id="what-will-happen-next">What will happen next</h2>
<p><strong>If you agree</strong> to participate:</p>
<ol>
<li>We will install an add-on that provides additional security-related features while browsing the web.</li>
<li>Continue using Firefox as you normally would. You may notice not notice any changes immediately.</li>
<li>After 14 days, the study will end on its own. Your Firefox will go back to normal.</li>
<li>We will ask you to fill out a quick <strong>optional survey</strong> to tell us about your experience. The survey should take less than 5 minutes to complete.</li>
</ol>
<h2 id="leaving-the-study">Leaving the study</h2>
<p>The study will expire on its own in 14 days. You may leave the study early. To do so, follow these steps:</p>
<ol>
<li>Type <code>about:addons</code> into the location bar, and press enter.</li>
<li>Find <code>Security Advisor</code> in the <strong>extensions</strong> list pane.</li>
<li>Click the <code>remove</code> button.</li>
<li>If you opt out of the study early we will ask you to fill out a survey. Were interested in hearing about your experience, even if you didnt participate in the entire study.</li>
</ol>
<p>Opting out of a study does not prevent you from participating in future studies.</p>
<h2 id="your-privacy">Your privacy</h2>
<h3 id="all-shield-studies">All Shield Studies</h3>
<p>Every Shield Study collects data about important study events, such as install, uninstall, daily usage, and end of study. Studies also include an optional survey.</p>
<p>This data is associated with <a href="https://gecko.readthedocs.io/en/latest/toolkit/components/telemetry/telemetry/index.html">Firefox Telemetry collection</a>.</p>
<h3 id="this-particular-study">This Particular Study</h3>
<p>In addition to the data collected by all Shield Studies and your voluntary answers to the followup survey, here are the <strong>key things you should know</strong> about what is happening when you participate in this study:</p>
<ul>
<li>We collect basic usage data regarding your interaction with the experimental add-on, such as data when you use a new security feature.</li>
<li>We collect information about your visits to a few popular sites and if you have a saved login for that site. No login credentials will be tracked or saved.</li>
<li>As you would expect, we do not collect any information when you are in private browsing mode.</li>
</ul>
<p><a href="https://github.com/mozilla/security-advisor-shield-study/blob/master/domains.txt">You can learn more about the data collection for this study here.</a></p>
<h2 id="you-help-make-firefox-better">You help make Firefox better</h2>
<p>At Mozilla, we pride ourselves on building products for you, the user! Thats why we need your help.</p>
<p>By participating in this study, you will help us make better decisions on your behalf and directly shape the future of Firefox.</p>
<h2 id="brought-to-you-by">Brought to you by</h2>
<p>Firefox Strategy and Insights team</p>
<ul>
<li>Benton Case</li>
<li>Michael Cooper</li>
<li>Michael Kelly</li>
<li>Gregg Lind</li>
<li>Matt Grimes</li>
</ul>
</div>
</div>
</body>
</html>

Просмотреть файл

@ -15,7 +15,8 @@ class TestPages(TestCase):
'pages.acr_firstrun', 'pages.dev_faq', 'pages.review_guide',
'pages.sunbird', 'pages.shield_study_2',
'pages.shield_study_3', 'pages.shield_study_4',
'pages.shield_study_5', 'pages.shield_study_7']
'pages.shield_study_5', 'pages.shield_study_6',
'pages.shield_study_7']
for page in pages:
self._check(page, 200)

Просмотреть файл

@ -43,6 +43,9 @@ urlpatterns = patterns(
url('^shield_study_5$',
TemplateView.as_view(template_name='pages/shield_study_5.html'),
name='pages.shield_study_5'),
url('^shield_study_6$',
TemplateView.as_view(template_name='pages/shield_study_6.html'),
name='pages.shield_study_6'),
url('^shield_study_7$',
TemplateView.as_view(template_name='pages/shield_study_7.html'),
name='pages.shield_study_7'),

Просмотреть файл

@ -0,0 +1,63 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@import url("chrome://global/skin/in-content/common.css");
html {
height: 100%;
}
body {
align-items: stretch;
display: flex;
justify-content: center;
min-height: 100%;
}
.container {
margin: 10vh 0;
max-width: 920px;
padding: 0 10px;
}
.title-container {
align-items: center;
border-bottom: 1px solid var(--in-content-box-border-color);
display: flex;
margin-bottom: .5em;
padding-bottom: 1em;
position: relative;
}
.title {
flex: 1;
margin-bottom: 0;
}
.title::before {
background: url('../../img/shield_study_5/small-firefox-logo@2x.png') no-repeat left center;
background-size: 57px 59px;
content: '';
display: block;
height: 59px;
left: -2.3em;
position: absolute;
top: 0;
width: 57px;
}
.button {
height: 40px;
margin: 0;
padding: 0 15px;
}
/* issues/4 */
code {
background-color: rgba(0,0,0,.1);
}
pre > code {
display: block;
}

Двоичные данные
static/img/shield_study_6/small-firefox-logo.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 6.1 KiB

Двоичные данные
static/img/shield_study_6/small-firefox-logo@2x.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 17 KiB