-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
352 lines (352 loc) · 15.4 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Free Password Manager Compatible with KeePass: KeeWeb</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="shortcut icon" href="img/favicon.png" />
<link rel="stylesheet" href="css/site.css" />
<link
rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="//fonts.googleapis.com/css?family=Raleway:300&subset=latin,latin-ext"
/>
<link
rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.1.1/gh-fork-ribbon.min.css"
/>
<script src="js/index.js"></script>
</head>
<body>
<h1><img src="img/logo.png" class="logo" /> <span>KeeWeb</span></h1>
<h2>Free cross-platform password manager compatible with KeePass</h2>
<div class="buttons-row">
<div class="buttons-col">
<a
href="https://github.com/keeweb/keeweb/releases/latest"
class="btn btn-large btn-download"
>
Download KeeWeb
<div class="btn-desc">
<i class="fa fa-apple"></i> <i class="fa fa-windows"></i>
<i class="fa fa-linux"></i> desktop app
</div>
</a>
<a
href="https://github.com/keeweb/keeweb/releases/latest"
class="btn-sub-link btn-sub-link-platforms"
>
<i class="fa fa-apple"></i> <i class="fa fa-windows"></i>
<i class="fa fa-linux"></i> all platforms
</a>
</div>
<div class="buttons-col">
<a href="https://app.keeweb.info/" class="btn btn-large btn-online">
Online Web App
<div class="btn-desc">
<i class="fa fa-chrome"></i> <i class="fa fa-firefox"></i>
<i class="fa fa-edge"></i> <i class="fa fa-safari"></i>
<i class="fa fa-opera"></i>
</div>
</a>
</div>
</div>
<hr />
<div class="screenshots">
<i class="fa fa-angle-left scr-arrow" onclick="rotateScreenshot(false);"></i>
<img
src="img/scr1.png"
class="screenshot"
id="scr-large"
onload="screenshotLoaded();"
/>
<i class="fa fa-angle-right scr-arrow" onclick="rotateScreenshot(true)"></i>
<i class="fa fa-spinner fa-spin screenshot-loader"></i>
</div>
<hr id="donate" />
<div>
<h2>Enjoying the app? Support the development</h2>
<a href="https://opencollective.com/keeweb#support">
<object
type="image/svg+xml"
data="https://opencollective.com/keeweb/tiers/backer.svg?avatarHeight=36&width=256"
></object>
</a>
<div>
<a href="https://opencollective.com/keeweb#support"
>https://opencollective.com/keeweb</a
>
</div>
<p> </p>
<p>
It's also possible to sponsor the project directly on
<a href="https://github.com/keeweb/keeweb">GitHub</a>.
</p>
</div>
<hr id="features" />
<div class="feature" id="feature-desktop">
<div class="feature-item">
<h2>Desktop apps for all platforms</h2>
<p>
Desktop apps look beautiful on each platform: macOS, Windows and Linux. You can
open local files in Desktop apps.
</p>
</div>
<img data-src="img/f-desktop.png" />
</div>
<div class="feature" id="feature-webapp">
<div class="feature-item">
<h2>Offline web app</h2>
<p>
Web version has almost all features available in desktop apps. It doesn't
require any installation and works in all modern browsers.
<a href="https://app.keeweb.info/">Launch the web app</a>
</p>
</div>
<img data-src="img/f-webapp.png" />
</div>
<div class="feature" id="feature-themes">
<div class="feature-item">
<h2>Themes</h2>
<p>Switch between dark and light theme, whichever you like more.</p>
</div>
<img data-src="img/f-themes.png" />
</div>
<div class="feature" id="feature-colors">
<div class="feature-item">
<h2>Color favorites</h2>
<p>Mark items with color and easily find them using Colors tab.</p>
</div>
<img data-src="img/f-colors.png" />
</div>
<div class="feature" id="feature-multiple">
<div class="feature-item">
<h2>Multiple files support</h2>
<p>
Open several files, search any entry or view all items from all files as one
list.
</p>
</div>
<img data-src="img/f-multiple.png" />
</div>
<div class="feature" id="feature-search">
<div class="feature-item">
<h2>One search for all files</h2>
<p>Search works for all files, everything is done from one search box.</p>
</div>
<img data-src="img/f-search.png" />
</div>
<div class="feature" id="feature-dropbox">
<div class="feature-item">
<h2>Cloud sync</h2>
<p>
Open files from Dropbox, Google Drive, OneDrive, or your own server, sync
changes across devices automatically.
</p>
</div>
<img data-src="img/f-dropbox.png" />
</div>
<div class="feature" id="feature-tags">
<div class="feature-item">
<h2>Easy tags input</h2>
<p>Add tags to arrange entries. Quickly select them in the list or add new ones.</p>
</div>
<img data-src="img/f-tags.png" />
</div>
<div class="feature" id="feature-dragdrop">
<div class="feature-item">
<h2>Drag&Drop</h2>
<p>Drop entry attachments and database files right to the app.</p>
</div>
<img data-src="img/f-dragdrop.png" />
</div>
<div class="feature" id="feature-protected">
<div class="feature-item">
<h2>Protected fields</h2>
<p>
Fields can be hidden when you need it. Also they will be stored in memory in
more secure way than usual fields.
</p>
</div>
<img data-src="img/f-protected.png" />
</div>
<div class="feature" id="feature-passgen">
<div class="feature-item">
<h2>Password generator</h2>
<p>Generate passwords of any desired length, with only symbols you want.</p>
</div>
<img data-src="img/f-passgen.png" />
</div>
<div class="feature" id="feature-offline">
<div class="feature-item">
<h2>Offline access</h2>
<p>
Files are saved for offline use, even those opened from Dropbox. You can always
access offline version, changes will be synced automatically when you are online
again.
</p>
</div>
<img data-src="img/f-offline.png" />
</div>
<div class="feature" id="feature-shortcuts">
<div class="feature-item">
<h2>Shortcuts</h2>
<p>Access actions faster with shortcuts.</p>
</div>
<img data-src="img/f-shortcuts.png" />
</div>
<div class="feature" id="feature-advsearch">
<div class="feature-item">
<h2>Advanced search options</h2>
<p>
Refine search by specifying fields, searching passwords, history and using
powerful regular expressions syntax.
</p>
</div>
<img data-src="img/f-advsearch.png" />
</div>
<div class="feature" id="feature-history">
<div class="feature-item">
<h2>History</h2>
<p>
All changes you make are put to history. You can rollback to any state or delete
the state completely.
</p>
</div>
<img data-src="img/f-history.png" />
</div>
<div class="feature" id="feature-mobile">
<div class="feature-item">
<h2>Mobile browsers support</h2>
<p>View details and copy passwords using mobile browsers.</p>
</div>
<img data-src="img/f-mobile.png" />
</div>
<div class="feature" id="feature-icons">
<div class="feature-item">
<h2>Entry icons</h2>
<p>
Select an icon from the set of predefined high-res icons, download website
favicon or use your own icons.
</p>
</div>
<img data-src="img/f-icons.png" />
</div>
<div class="feature" id="feature-table">
<div class="feature-item">
<h2>Table view</h2>
<p>Switch between list and table layout.</p>
</div>
<img data-src="img/f-table.png" />
</div>
<div class="feature" id="feature-image">
<div class="feature-item">
<h2>Inline image viewer</h2>
<p>Attach images to entries and click to view.</p>
</div>
<img data-src="img/f-image.png" />
</div>
<div class="feature" id="feature-update">
<div class="feature-item">
<h2>Auto update</h2>
<p>
Desktop apps can update themselves. There are several options: update and
install, show a notification or disable update at all.
</p>
</div>
<img data-src="img/f-update.png" />
</div>
<div class="feature" id="feature-opensource">
<div class="feature-item">
<h2>Open-source</h2>
<p>
The app is completely free: no trials, no demo versions, no limits. There's no
catch. Even more: you can always build it from sources yourself. The source code
is available on <a href="https://github.com/keeweb/keeweb">GitHub</a>.
</p>
</div>
<img data-src="img/f-opensource.png" />
</div>
<div class="links-row" id="links">
<div class="links">
<h2>About KeeWeb</h2>
<p>Here are some websites with reviews of KeeWeb:</p>
<div class="link">
<a href="https://reddit.com/r/keepass" rel="noopener noreferrer">Reddit: r/KeePass</a>
<div class="link-desc">Everything about KeePass: KeeWeb is listed among Recommended Clients on Reddit.</div>
</div>
<div class="link">
<a href="https://en.wikipedia.org/wiki/KeeWeb" rel="noopener noreferrer">Wikipedia: KeeWeb</a>
<div class="link-desc">An article about KeeWeb in the Wikipedia.</div>
</div>
<div class="link">
<a href="https://www.ghacks.net/2016/02/25/keeweb-self-hosted-keepass-web-and-desktop-client/" rel="noopener noreferrer">Ghacks: Self-hosted KeePass Web and Desktop client</a>
<div class="link-desc">Ghacks is a technology blog that was founded in 2005 by Martin Brinkmann. It has since then become one of the most popular independent technology sites on the Internet with regular contributions from freelance writers.</div>
</div>
<div class="link">
<a href="https://switchextension.com/blog/password-management-apps-and-software-list/" rel="noopener noreferrer">Switch Extension: The Ultimate List of Apps & Software For Password Management</a>
<div class="link-desc">Switch is a productivity tool for busy digital workers. It helps you work quicker than ever before by streamlining your workstation and cutting down time wastage in your browser.</div>
</div>
<div class="link">
<a href="https://freeappsforme.com/keeweb-software-review/" rel="noopener noreferrer">Free apps for me: KeeWeb Software Review</a>
<div class="link-desc">Freeappsforme team reviews free and freemium apps that are worth downloading.</div>
</div>
</div>
</div>
<div class="buttons-row" id="bottom-buttons">
<div class="buttons-col">
<a
href="https://github.com/keeweb/keeweb/releases/latest"
class="btn btn-large btn-download"
>
Download KeeWeb
<div class="btn-desc">
<i class="fa fa-apple"></i> <i class="fa fa-windows"></i>
<i class="fa fa-linux"></i> desktop app
</div>
</a>
<a
href="https://github.com/keeweb/keeweb/releases/latest"
class="btn-sub-link btn-sub-link-platforms"
>
<i class="fa fa-apple"></i> <i class="fa fa-windows"></i>
<i class="fa fa-linux"></i> all platforms
</a>
</div>
<div class="buttons-col">
<a href="https://app.keeweb.info/" class="btn btn-large btn-online">
Online Web App
<div class="btn-desc">
<i class="fa fa-chrome"></i> <i class="fa fa-firefox"></i>
<i class="fa fa-edge"></i> <i class="fa fa-safari"></i>
<i class="fa fa-opera"></i>
</div>
</a>
</div>
</div>
<hr />
<div class="footer">
<div class="left">
<a href="https://github.com/keeweb/keeweb">GitHub</a>
<a href="https://twitter.com/kee_web">Twitter</a>
<a href="privacy-policy.html">Privacy Policy</a>
</div>
<div class="right">
Created with <i class="fa fa-heart"></i> by
<a href="https://antelle.net">Antelle</a>
</div>
<div class="clear"></div>
</div>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/keeweb/keeweb">Fork me on GitHub</a>
</div>
</div>
</body>
</html>