Files
fileshare/static/terms.html
T
2026-05-21 21:37:00 +01:00

29 lines
1021 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Terms of Service</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>Terms of Service</h1>
<p>By using this service, you agree to the following:</p>
<p>1. Do not upload illegal content.</p>
<p>2. Do not abuse the service.</p>
<p>3. Files may be removed at any time without notice.</p>
<p>4. No warranty is provided. Use at your own risk.</p>
<p>5. We reserve the right to terminate access at any time.</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>