first commit
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Privacy Policy</title>
|
||||
<style>
|
||||
*{margin:0;padding:0;box-sizing:border-box}
|
||||
body{font-family:monospace;padding:40px;background:white;color:black;max-width:600px}
|
||||
h1{margin-bottom:20px}
|
||||
p{margin-bottom:10px}
|
||||
.nav{margin-top:40px;font-size:12px}
|
||||
a{color:black}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Privacy Policy</h1>
|
||||
<p>We keep this simple.</p>
|
||||
<p>1. Uploaded files are stored on our servers.</p>
|
||||
<p>2. File metadata, including name, size, and upload time, is stored so the service can show and serve your files.</p>
|
||||
<p>3. No cookies are used.</p>
|
||||
<p>4. Authentication tokens are saved in your browser.</p>
|
||||
<p>5. No analytics or tracking.</p>
|
||||
<div class="nav"><a href="/">Home</a> | <a href="/speedtest">Speed Test</a> | <a id="navAuth" href="/login">Login</a> | <a href="/terms">Terms</a> | <a href="/privacy">Privacy</a></div>
|
||||
<script>
|
||||
const nav=document.getElementById('navAuth');
|
||||
if(localStorage.getItem('upload_token')){nav.href='/dashboard';nav.textContent='Dashboard'}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user