Files
fnx_web/svelte/src/file_viewer/viewers/Abuse.svelte

35 lines
767 B
Svelte
Raw Normal View History

<script>
import TextBlock from "./TextBlock.svelte"
export const set_file = f => file = f
let file = {
id: "",
name: "",
abuse_type: "",
abuse_reporter_name: "",
}
</script>
2022-01-17 14:10:50 +01:00
<br/>
2023-01-02 14:35:36 +01:00
<TextBlock width="750px">
<h1>Unavailable for legal reasons</h1>
<p>
2023-01-02 14:35:36 +01:00
This file has been removed for violating pixeldrain's
<a href="/about#content-policy">content policy</a>. Type of abuse:
{file.abuse_type}.
</p>
<p>
2023-01-02 14:35:36 +01:00
{#if file.abuse_reporter_name === "User submitted reports"}
The file was reported by users of pixeldrain with the report button
in the toolbar.
{/if}
</p>
<p>
Pixeldrain has zero tolerance towards abuse. The IP address this file
originated from has been banned and is no longer able to upload files to
pixeldrain.
</p>
</TextBlock>