-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_guide.html
317 lines (281 loc) · 10 KB
/
user_guide.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Guide - The Privacyst</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<style>
:root {
--bg-color: #0f172a;
--text-color: #e2e8f0;
--primary: #06b6d4;
--primary-dark: #0891b2;
--secondary: #3b82f6;
--accent: #22d3ee;
--card-bg: #1e293b;
}
body {
background: var(--bg-color);
color: var(--text-color);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
margin: 0;
line-height: 1.6;
min-height: 100vh;
}
nav {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 1.2rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-brand {
color: var(--primary);
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 1rem;
}
.nav-link {
color: var(--text-color);
text-decoration: none;
padding: 0.8rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 500;
}
.nav-link:hover {
color: var(--primary);
background: rgba(255, 255, 255, 0.05);
transform: translateY(-1px);
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 2rem 1rem;
}
.guide-card {
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 3rem;
margin-top: 2rem;
box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.5px;
}
.tool-section {
margin-bottom: 4rem;
padding: 2rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-section:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px -5px rgba(6, 182, 212, 0.1);
}
h2 {
color: var(--primary);
font-size: 2rem;
font-weight: 600;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.8rem;
}
.tool-description {
font-size: 1.1rem;
color: rgba(226, 232, 240, 0.9);
margin-bottom: 2rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 8px;
border-left: 4px solid var(--primary);
}
.feature-list {
list-style: none;
padding: 0;
margin: 0 0 2rem;
}
.feature-list li {
padding: 0.8rem 0;
padding-left: 1.5rem;
position: relative;
}
.feature-list li::before {
content: "→";
color: var(--primary);
position: absolute;
left: 0;
}
.feature-list ul {
list-style: none;
padding-left: 2rem;
margin: 0.5rem 0;
}
.tips {
background: rgba(6, 182, 212, 0.1);
padding: 1rem 1.5rem;
border-radius: 8px;
margin-top: 1.5rem;
}
.tips strong {
color: var(--primary);
}
.back-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary);
text-decoration: none;
padding: 1rem 2rem;
background: transparent;
border: 2px solid var(--primary);
border-radius: 12px;
margin-top: 2rem;
font-weight: 500;
transition: all 0.3s ease;
}
.back-link:hover {
background: var(--primary);
color: var(--bg-color);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.nav-content {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.nav-links {
flex-direction: column;
width: 100%;
}
.container {
padding: 1rem;
}
.guide-card {
padding: 1.5rem;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.5rem;
}
.tool-description {
font-size: 1rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-content">
<a href="/" class="nav-brand">The Privacyst</a>
<div class="nav-links">
<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>
</div>
</nav>
<div class="container">
<div class="guide-card">
<h1>User Guide</h1>
<div class="tool-section">
<h2>Password Calculator</h2>
<div class="tool-description">Generate strong, unique passwords for all your accounts.</div>
<ul class="feature-list">
<li>Choose password length between 8 and 128 characters</li>
<li>Select character types: uppercase, lowercase, numbers, special characters</li>
<li>Generate secure, random passwords</li>
<li>Copy generated passwords with one click</li>
</ul>
<div class="tips">
<strong>Tip:</strong> For maximum security, use all character types and a length of at least 12 characters.
</div>
</div>
<div class="tool-section">
<h2>SSH Key Generator</h2>
<div class="tool-description">Create secure SSH keys for remote access.</div>
<ul class="feature-list">
<li>Choose between RSA, DSA, ECDSA, and Ed25519 key types</li>
<li>Select key length (2048 or 4096 bits for RSA)</li>
<li>Generate both public and private keys</li>
<li>Copy keys directly to clipboard</li>
</ul>
<div class="tips">
<strong>Tip:</strong> Ed25519 keys are recommended for modern systems due to their security and efficiency.
</div>
</div>
<div class="tool-section">
<h2>Username Generator</h2>
<div class="tool-description">Create unique, memorable usernames.</div>
<ul class="feature-list">
<li>Generate random, unique usernames</li>
<li>Copy generated usernames instantly</li>
<li>Create professional-looking identifiers</li>
</ul>
<div class="tips">
<strong>Tip:</strong> Generated usernames are designed to be memorable while maintaining uniqueness.
</div>
</div>
<div class="tool-section">
<h2>Email Generator</h2>
<div class="tool-description">Create realistic email addresses for testing or demonstration purposes.</div>
<ul class="feature-list">
<li>Generate realistic email addresses using common first and last names</li>
<li>Multiple email formats:
<ul>
<li>First.Last (e.g., john.smith42)</li>
<li>First Initial.Last (e.g., j.smith123)</li>
<li>FirstLast (e.g., johnsmith789)</li>
<li>Last.First (e.g., smith.john456)</li>
</ul>
</li>
<li>Choose from popular email domains (Gmail, Outlook, ProtonMail)</li>
<li>Automatically adds realistic number suffixes</li>
<li>Copy generated emails with one click</li>
</ul>
<div class="tips">
<strong>Tip:</strong> Each generated email follows common naming conventions used by real email providers, making them perfect for testing or demonstration purposes.
</div>
</div>
<a href="/" class="back-link">← Back to Home</a>
</div>
</div>
</body>
</html>