Skip to content

Commit d2edc8c

Browse files
authored
Merge pull request #2795 from /issues/2690
Issue #2690 - added block about Surface privacy implications of repor…
2 parents 5ae75ee + 138fe59 commit d2edc8c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

webcompat/static/css/src/form.css

+9
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,15 @@
9090
font-weight: 700;
9191
}
9292

93+
/* form text privacy */
94+
.form-text-privacy {
95+
background-color: var(--base-colorDark);
96+
border-radius: 5px;
97+
font-size: 14px;
98+
padding: 6px;
99+
text-align: center;
100+
}
101+
93102
/* * Form input[type="text"], textarea (text-field) */
94103

95104
.text-field {

webcompat/templates/home-page/form.html

+4
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ <h1 class="headline-1">Report Site Issue</h1>
145145
{% if session.username %}Report as {{ session.username }}{% else %}Report via GitHub{% endif %}
146146
</button>
147147
</div>
148+
<div class="form-text-privacy ">
149+
All information included in this report will be publicly visible.
150+
<a href="https://webcompat.com/privacy">Learn More</a>
151+
</div>
148152
<div class="is-hidden" aria-hidden="true">
149153
<div class="form-text form-element js-Form-group">
150154
{{ form.username.label(class_='form-label') }}

0 commit comments

Comments
 (0)