diff options
| -rw-r--r-- | public/index.php | 7 | ||||
| -rw-r--r-- | public/static/PRIVACY.txt | 2 | ||||
| -rw-r--r-- | public/static/TOS.txt | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/public/index.php b/public/index.php index 086bff4..053b348 100644 --- a/public/index.php +++ b/public/index.php @@ -31,13 +31,14 @@ if (FILE_CATALOG_RANDOM && isset($_GET['random'])) { <p> <?= INSTANCE_NAME ?> is a simple, free and anonymous file sharing site. We do not store anything other than the files you upload. - They are stored publicly until the heat death of the universe, so please encrypt confidential files - or don't upload them at all. + They are stored <b>publicly</b> until the heat death of the universe occurs or you hit the DELETE + button. Users do not need an account to start uploading. <br><br> Click the button below and share the files with your friends today! <br> - But, read <a href="/tos.php">TOS</a> and <a href="/privacy.php">Privacy Policy</a> before + But, read <a href="/static/TOS.txt">TOS</a> and <a href="/static/PRIVACY.txt">Privacy Policy</a> + before interacting with the website. </p> diff --git a/public/static/PRIVACY.txt b/public/static/PRIVACY.txt new file mode 100644 index 0000000..9cebe94 --- /dev/null +++ b/public/static/PRIVACY.txt @@ -0,0 +1,2 @@ +There is your privacy policy. +If you see this, then the administrator hasn't set privacy policy.
\ No newline at end of file diff --git a/public/static/TOS.txt b/public/static/TOS.txt new file mode 100644 index 0000000..897ed5e --- /dev/null +++ b/public/static/TOS.txt @@ -0,0 +1,2 @@ +There is your TOS. +If you see this, then the administrator hasn't set TOS.
\ No newline at end of file |
