-
Notifications
You must be signed in to change notification settings - Fork 1
/
privacy_policy.html
176 lines (154 loc) · 5.21 KB
/
privacy_policy.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - The Privacyst</title>
<style>
:root {
--bg-color: #0f172a;
--text-color: #e2e8f0;
--primary: #06b6d4;
--secondary: #3b82f6;
--accent: #22d3ee;
--card-bg: rgba(30, 41, 59, 0.5);
}
body {
background: var(--bg-color);
color: var(--text-color);
font-family: 'Inter', sans-serif;
margin: 0;
line-height: 1.6;
}
nav {
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
gap: 2rem;
}
.nav-link {
color: var(--text-color);
text-decoration: none;
padding: 0.5rem 1rem;
transition: color 0.3s;
}
.nav-link:hover {
color: var(--primary);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
padding-top: 5rem;
}
.policy-card {
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 2rem;
}
h1 {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
letter-spacing: -0.5px;
}
h2 {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
display: flex;
align-items: center;
gap: 0.8rem;
}
.section {
margin-bottom: 2rem;
}
.section p {
margin-bottom: 1rem;
}
.back-link {
display: inline-block;
color: var(--primary);
text-decoration: none;
margin-top: 1rem;
}
.back-link:hover {
text-decoration: underline;
}
.highlight {
color: var(--accent);
font-weight: 500;
}
</style>
</head>
<body>
<nav>
<div class="nav-content">
<a href="/" class="nav-link">Home</a>
<a href="user_guide" class="nav-link">User Guide</a>
<a href="privacy_policy" class="nav-link">Privacy Policy</a>
<a href="release_notes" class="nav-link">Release Notes</a>
<a href="about" class="nav-link">About</a>
</div>
</nav>
<div class="container">
<div class="policy-card">
<h1>Privacy Policy</h1>
<div class="section">
<h2>Our Commitment</h2>
<p>The Privacyst is designed with privacy as its core principle. We prioritize your security and privacy in every aspect of our service.</p>
</div>
<div class="section">
<h2>Data Collection</h2>
<p>We operate on a <span class="highlight">zero-data-collection policy</span>. All operations are performed locally in your browser, and we do not store or transmit any of your data.</p>
</div>
<div class="section">
<h2>How It Works</h2>
<p>Our generators operate entirely client-side, meaning:</p>
<ul>
<li>No data leaves your browser</li>
<li>No server-side storage</li>
<li>No logs or analytics</li>
<li>No cookies or tracking</li>
</ul>
</div>
<div class="section">
<h2>Generated Data</h2>
<p>All passwords, SSH keys, usernames, and email addresses are generated using secure algorithms running locally in your browser. We have no access to any generated data.</p>
</div>
<div class="section">
<h2>Third-Party Services</h2>
<p>We do not integrate with or share data with any third-party services.</p>
</div>
<div class="section">
<h2>Updates to Policy</h2>
<p>Any changes to this privacy policy will be posted on this page. Last updated: November 2024.</p>
</div>
<a href="/" class="back-link">← Back to Home</a>
</div>
</div>
</body>
</html>