Skip to content

Commit 7495e94

Browse files
committed
Add missing copy to 'reporting illegal content' page
Bug: T400810
1 parent 6cb7e8b commit 7495e94

File tree

1 file changed

+21
-13
lines changed

1 file changed

+21
-13
lines changed

src/components/Pages/Complaint.vue

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,31 @@
22
<v-main>
33
<v-responsive max-width="616px" min-width="250px" >
44
<div class="body">
5-
<p class="text-h4">Reporting illegal content</p>
6-
<p class="text-body-1">Please use this form to report any content that you consider to be illegal. After sending the email,
7-
which is generated by clicking the ‘Report illegal content’ button, your report will be delivered to
8-
us and handled in accordance with Regulation (EU) 2022/2065, Article 16 (‘Digital Services Act’).
9-
If you supply an email, you will then automatically receive a confirmation of receipt and, as soon
10-
as we have processed your report, we will inform you of any action taken. Please be aware that
11-
no feedback will be provided on the action taken if the report is deemed abusive (e.g. spam or
12-
unfounded report). In the event of repeated abusive use, we reserve the right to block you.</p>
5+
<p class="text-body-1 font-weight-bold mb-2">
6+
Points of contact under the Digital Services Act (Regulation 2022/2065/EU)
7+
</p>
8+
<p class="text-subtitle-2 font-weight-regular mb-8">
9+
Point of contact for public authorities under Art. 11 DSA: [email protected]<br/>
10+
Point of contact for recipients under Art. 12 DSA: [email protected]
11+
</p>
12+
<h1 class="text-h4 mb-4">Reporting illegal content</h1>
13+
<p class="text-body-1 mb-9">
14+
Please use this form to report any content that you consider to be illegal. After sending the email,
15+
which is generated by clicking the ‘Report illegal content’ button, your report will be delivered to
16+
us and handled in accordance with Regulation (EU) 2022/2065, Article 16 (‘Digital Services Act’).
17+
If you supply an email, you will then automatically receive a confirmation of receipt and, as soon
18+
as we have processed your report, we will inform you of any action taken. Please be aware that
19+
no feedback will be provided on the action taken if the report is deemed abusive (e.g. spam or
20+
unfounded report). In the event of repeated abusive use, we reserve the right to block you.
21+
</p>
1322
<v-form ref="form" v-on:submit.prevent>
1423
<v-responsive max-width="519px">
1524
<v-textarea
1625
v-model="contenturl"
1726
:rules="[() => !!contenturl || 'This field is required']"
1827
label="URL(s) for the content in question"
1928
required
29+
auto-grow
2030
/>
2131
<v-textarea
2232
id="inputMessage"
@@ -27,9 +37,6 @@
2737
label="Reason why the information in question is illegal content"
2838
required
2939
/>
30-
<v-input
31-
/>
32-
3340
<v-text-field
3441
id="contactname"
3542
v-model="name"
@@ -38,6 +45,7 @@
3845
/>
3946
<v-text-field
4047
id="contactemail"
48+
class="mb-6"
4149
v-model="email"
4250
:rules="[v => v.length <= 300 || 'Max 300 characters']"
4351
label="Email address (optional)"
@@ -59,7 +67,7 @@
5967
</div>
6068
</v-form>
6169
<v-snackbar color="success" elevation="24" v-model="successMessage">
62-
<span class="text-body-1" >Report successfully submitted. Thanks!</span>
70+
<span class="text-body-1">Report successfully submitted. Thanks!</span>
6371
<template v-slot:action>
6472
<v-btn
6573
text
@@ -71,7 +79,7 @@
7179
</template>
7280
</v-snackbar>
7381
<v-snackbar color="error" elevation="24" v-model="errorMessage" multi-line>
74-
<span class="text-body-1" >Something went wrong with submitting your report. Please try again.</span>
82+
<span class="text-body-1">Something went wrong with submitting your report. Please try again.</span>
7583
<template v-slot:action>
7684
<v-btn
7785
text

0 commit comments

Comments
 (0)