-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (119 loc) · 6.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PasswordSentinel - Secure Password Generator & Manager</title>
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="header/header_styles.css">
<link rel="stylesheet" href="heropage/heropage_styles.css">
<link rel="icon" href="/heropage/heropage-images/mainicon.svg" type="image/png">
</head>
<body>
<header>
<div class="header-container">
<div class="header-logo">
<a href="index.html">PasswordSentinel</a>
</div>
<nav class="header-nav">
<ul class="header-nav-menu">
<li class="header-nav-item">
<a class="header-nav-link">About</a>
<div class="header-dropdown">
<a href="/about/why-passwordsentinel.html" class="header-dropdown-item">Why PasswordSentinel</a>
<a href="what-is-password-manager.html" class="header-dropdown-item">What is a Password Manager</a>
<a href="features.html" class="header-dropdown-item">Features</a>
<a href="/policies/security-policies/security-policy.html" class="header-dropdown-item">Security</a>
</div>
</li>
<li class="header-nav-item">
<a href="/policies/policies.html" class="header-nav-link">Policy</a>
<div class="header-dropdown">
<a href="/policies/data-retention-policy/data-retention.html" class="header-dropdown-item">Data Retention Policy</a>
<a href="/policies/privacy-policy/privacy-policy.html" class="header-dropdown-item">Privacy Policy</a>
<a href="/policies/security-policies/security-policy.html" class="header-dropdown-item">Security Policy</a>
<a href="/policies/terms-of-service/terms-of-service.html" class="header-dropdown-item">Terms Of Service</a>
</div>
</li>
<li class="header-nav-item">
<a href="https://github.com/CyberSphinxxx/PasswordSentinel" class="header-nav-link">GitHub Repository</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="hero-main">
<div class="hero-content">
<h1>PasswordSentinel</h1>
<p>Your trusted, free companion for generating and managing secure passwords locally, with no hidden charges or subscriptions.</p>
<p>Protect your digital life with advanced encryption, intuitive tools, and the peace of mind that comes with complete privacy - your data never leaves your device.</p>
<a href="dashboard/dashboard.html" class="cta-button">Get Started</a>
</div>
<div class="hero-image-main">
<img src="/heropage/heropage-images/heroimg.jpg" alt="Password Sentinel Illustration">
</div>
</section>
<section class="feature-highlight">
<h2>Why Use PasswordSentinel</h2>
<div class="feature-grid">
<div class="feature-item">
<a href="https://www.kiteworks.com/risk-compliance-glossary/aes-256-encryption/#:~:text=What%20Is%20AES-256%20Encryption,decrypt%20a%20block%20of%20messages.">
<i class="fas fa-lock"></i>
</a>
<h3>Advanced Encryption</h3>
<p>AES-GCM 256-bit encryption for uncompromising security</p>
</div>
<div class="feature-item">
<i class="fas fa-desktop"></i>
<h3>Local Storage</h3>
<p>Your data never leaves your device, ensuring complete privacy</p>
</div>
<div class="feature-item">
<i class="fas fa-code"></i>
<h3>Open Source</h3>
<p>Transparent, community-reviewed code for trust and reliability</p>
</div>
<div class="feature-item">
<i class="fas fa-sync"></i>
<h3>Regular Updates</h3>
<p>Continuous improvements and security enhancements</p>
</div>
</div>
</section>
<section class="hero">
<div class="hero-image">
<img src="/heropage/heropage-images/SafeMobile.png" alt="PasswordSentinel Safety Illustration">
</div>
<div class="hero-content">
<h2>Why PasswordSentinel is Safe</h2>
<ul>
<li>Advanced AES-GCM 256-bit encryption</li>
<li>Local storage - your data never leaves your device</li>
<li>Open-source code for transparency and community review</li>
<li>Regular security audits and updates</li>
</ul>
<a href="/policies/security-policies/security-policy.html" class="cta-button">Learn More About Our Security</a>
</div>
</section>
<section class="hero">
<div class="hero-content">
<h2>Why Use a Password Manager?</h2>
<ul>
<li>Generate strong, unique passwords for all your accounts</li>
<li>Securely store and organize your passwords in one place</li>
<li>Improve your overall online security posture</li>
</ul>
<a href="/what-is-password-manager.html" class="cta-button">Discover the Benefits</a>
</div>
<div class="hero-image">
<img src="/heropage/heropage-images/PasswordManager.png" alt="Password Manager Benefits Illustration">
</div>
</section>
<footer class="dashboard-footer">
<p>PasswordSentinel © 2024
| <a href="/policies/policies.html">Policy</a>
</footer>
</body>
</html>