Files

67 lines
2.7 KiB
HTML
Raw Permalink Normal View History

2025-08-25 23:09:03 -04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2025-08-26 13:07:23 -04:00
<title>ION606 — Share Portal</title>
<meta name="description" content="ION606 self-hosted Share Portal — quick access to PrivateBin (notes) and LUFI (file drops).">
2025-08-25 23:09:03 -04:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header class="site-header">
2025-08-26 13:07:23 -04:00
<div class="container header-inner">
<div class="brand-row">
<div class="logo">🔐</div>
<div>
<h1 class="brand">ION606's Share Portal</h1>
<p class="tagline">Selfhosted privacy tools: encrypted notes & secure file drops</p>
</div>
</div>
2025-08-25 23:09:03 -04:00
</div>
</header>
<main class="container">
2025-08-26 13:07:23 -04:00
<section class="hero card">
<h2 class="hero-title">Private notes • Encrypted file drops</h2>
<p class="hero-lead">Quick links to your selfhosted services. Nothing stored here — just shortcuts to PrivateBin (endtoend encrypted notes) and LUFI (clientside encrypted file sharing).</p>
2025-08-25 23:09:03 -04:00
<nav class="actions">
2025-08-26 13:07:23 -04:00
<a class="btn" data-link="note" href="#" target="_blank" rel="noopener">Open PrivateBin (notes)</a>
<a class="btn" data-link="drop" href="#" target="_blank" rel="noopener">Open LUFI (file drop)</a>
2025-08-25 23:09:03 -04:00
</nav>
2025-08-26 13:07:23 -04:00
<p class="hint">Bookmark this page at <a id="home-domain" href="#" target="_blank" rel="noopener"></a></p>
2025-08-25 23:09:03 -04:00
</section>
2025-08-26 13:07:23 -04:00
<section class="cards-grid">
<article class="card feature">
<h3>Why PrivateBin?</h3>
<p>Endtoend encrypted pastes. Paste content is encrypted in your browser before upload — the server never sees plain text.</p>
</article>
<article class="card feature">
<h3>Why LUFI?</h3>
<p>Clientside encrypted file sharing with configurable expiry. Share large files securely without thirdparty hosting.</p>
</article>
<article class="card feature">
<h3>Wanna self-host?</h3>
<p>You can view the source code/instructions at <a data-link="github" href="https://github.com/ION606/tempfiles" target="_blank"></a></p>
</article>
2025-08-25 23:09:03 -04:00
</section>
</main>
<footer class="site-footer">
2025-08-26 13:07:23 -04:00
<div class="container footer-inner">
<p><span id="year"></span> · served by caddy · ION606</p>
2025-08-25 23:09:03 -04:00
</div>
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>