|
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 | + <h1 class="text-h4 mb-4">Reporting illegal content</h1> |
| 6 | + <p class="text-body-1 mb-9"> |
| 7 | + Please use this form to report any content that you consider to be illegal. After sending the email, |
| 8 | + which is generated by clicking the ‘Report illegal content’ button, your report will be delivered to |
| 9 | + us and handled in accordance with Regulation (EU) 2022/2065, Article 16 (‘Digital Services Act’). |
| 10 | + If you supply an email, you will then automatically receive a confirmation of receipt and, as soon |
| 11 | + as we have processed your report, we will inform you of any action taken. Please be aware that |
| 12 | + no feedback will be provided on the action taken if the report is deemed abusive (e.g. spam or |
| 13 | + unfounded report). In the event of repeated abusive use, we reserve the right to block you. |
| 14 | + </p> |
13 | 15 | <v-form ref="form" v-on:submit.prevent>
|
14 | 16 | <v-responsive max-width="519px">
|
15 | 17 | <v-textarea
|
16 | 18 | v-model="contenturl"
|
17 | 19 | :rules="[() => !!contenturl || 'This field is required']"
|
18 | 20 | label="URL(s) for the content in question"
|
19 | 21 | required
|
| 22 | + auto-grow |
20 | 23 | />
|
21 | 24 | <v-textarea
|
22 | 25 | id="inputMessage"
|
|
27 | 30 | label="Reason why the information in question is illegal content"
|
28 | 31 | required
|
29 | 32 | />
|
30 |
| - <v-input |
31 |
| - /> |
32 |
| - |
33 | 33 | <v-text-field
|
34 | 34 | id="contactname"
|
35 | 35 | v-model="name"
|
|
38 | 38 | />
|
39 | 39 | <v-text-field
|
40 | 40 | id="contactemail"
|
| 41 | + class="mb-6" |
41 | 42 | v-model="email"
|
42 | 43 | :rules="[v => v.length <= 300 || 'Max 300 characters']"
|
43 | 44 | label="Email address (optional)"
|
|
57 | 58 | Report illegal content
|
58 | 59 | </v-btn>
|
59 | 60 | </div>
|
60 |
| - </v-form> |
61 |
| - <v-snackbar color="success" elevation="24" v-model="successMessage"> |
62 |
| - <span class="text-body-1" >Report successfully submitted. Thanks!</span> |
63 |
| - <template v-slot:action> |
64 |
| - <v-btn |
65 |
| - text |
66 |
| - variant="text" |
67 |
| - @click="closeAlert" |
68 |
| - > |
69 |
| - Close |
70 |
| - </v-btn> |
71 |
| - </template> |
72 |
| - </v-snackbar> |
73 |
| - <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> |
75 |
| - <template v-slot:action> |
76 |
| - <v-btn |
77 |
| - text |
78 |
| - variant="text" |
79 |
| - @click="closeAlert" |
80 |
| - > |
81 |
| - Close |
82 |
| - </v-btn> |
83 |
| - </template> |
84 |
| - </v-snackbar> |
85 |
| - </div> |
| 61 | + </v-form> |
| 62 | + <v-snackbar color="success" elevation="24" v-model="successMessage"> |
| 63 | + <span class="text-body-1">Report successfully submitted. Thanks!</span> |
| 64 | + <template v-slot:action> |
| 65 | + <v-btn |
| 66 | + text |
| 67 | + variant="text" |
| 68 | + @click="closeAlert" |
| 69 | + > |
| 70 | + Close |
| 71 | + </v-btn> |
| 72 | + </template> |
| 73 | + </v-snackbar> |
| 74 | + <v-snackbar color="error" elevation="24" v-model="errorMessage" multi-line> |
| 75 | + <span class="text-body-1">Something went wrong with submitting your report. Please try again.</span> |
| 76 | + <template v-slot:action> |
| 77 | + <v-btn |
| 78 | + text |
| 79 | + variant="text" |
| 80 | + @click="closeAlert" |
| 81 | + > |
| 82 | + Close |
| 83 | + </v-btn> |
| 84 | + </template> |
| 85 | + </v-snackbar> |
| 86 | + </div> |
86 | 87 | </v-responsive>
|
87 | 88 | </v-main>
|
88 | 89 | </template>
|
|
0 commit comments