|
2 | 2 | <v-main>
|
3 | 3 | <v-responsive max-width="616px" min-width="250px" >
|
4 | 4 | <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> |
13 | 22 | <v-form ref="form" v-on:submit.prevent>
|
14 | 23 | <v-responsive max-width="519px">
|
15 | 24 | <v-textarea
|
16 | 25 | v-model="contenturl"
|
17 | 26 | :rules="[() => !!contenturl || 'This field is required']"
|
18 | 27 | label="URL(s) for the content in question"
|
19 | 28 | required
|
| 29 | + auto-grow |
20 | 30 | />
|
21 | 31 | <v-textarea
|
22 | 32 | id="inputMessage"
|
|
27 | 37 | label="Reason why the information in question is illegal content"
|
28 | 38 | required
|
29 | 39 | />
|
30 |
| - <v-input |
31 |
| - /> |
32 |
| - |
33 | 40 | <v-text-field
|
34 | 41 | id="contactname"
|
35 | 42 | v-model="name"
|
|
38 | 45 | />
|
39 | 46 | <v-text-field
|
40 | 47 | id="contactemail"
|
| 48 | + class="mb-6" |
41 | 49 | v-model="email"
|
42 | 50 | :rules="[v => v.length <= 300 || 'Max 300 characters']"
|
43 | 51 | label="Email address (optional)"
|
|
59 | 67 | </div>
|
60 | 68 | </v-form>
|
61 | 69 | <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> |
63 | 71 | <template v-slot:action>
|
64 | 72 | <v-btn
|
65 | 73 | text
|
|
71 | 79 | </template>
|
72 | 80 | </v-snackbar>
|
73 | 81 | <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> |
75 | 83 | <template v-slot:action>
|
76 | 84 | <v-btn
|
77 | 85 | text
|
|
0 commit comments