Files
seedPass/landing/index.html
Keep Creating Online 55eb008f7e update
2024-10-21 19:32:26 -04:00

60 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>SeedPass - Secure Password Manager</title>
<link rel="stylesheet" href="./style.css"> <!-- Relative path to style.css -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar">
<div class="container">
<img src="YOUR_LOGO_URL_HERE" alt="SeedPass Logo" class="logo">
</div>
</nav>
</header>
<main>
<section class="intro">
<div class="container">
<h1>SeedPass: Secure Password Manager</h1>
<p><strong>SeedPass</strong> is a secure password generator and manager built on Bitcoin's BIP-85 standard. It uses deterministic key derivation to generate passwords that are never stored but can be easily regenerated when needed.</p>
<p>By integrating with the <strong>Nostr network</strong>, SeedPass ensures that your passwords are safe and accessible across devices.</p>
<a href="https://github.com/PR0M3TH3AN/SeedPass" class="btn-primary cta-button">Get Started</a>
</div>
</section>
<section class="features">
<div class="container">
<h2>Features</h2>
<ul>
<li>Deterministic password generation using BIP-85</li>
<li>Encrypted local storage for seeds and sensitive data</li>
<li>Nostr integration for secure backup and retrieval</li>
<li>Checksum verification for integrity checks</li>
<li>User-friendly command-line interface</li>
</ul>
</div>
</section>
<section class="disclaimer">
<div class="container">
<h2>Disclaimer</h2>
<p><strong>⚠️ Use with Caution:</strong> This software was not developed by an experienced security expert. There may be bugs and missing features, and security vulnerabilities may exist. Always backup your data and be cautious while using it in sensitive environments.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>&copy; 2024 SeedPass. All rights reserved.</p>
</div>
</footer>
<script src="./script.js"></script> <!-- Relative path to script.js -->
</body>
</html>