-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (68 loc) · 4.62 KB
/
index.html
File metadata and controls
80 lines (68 loc) · 4.62 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> -->
<link rel="stylesheet" href="https://bootswatch.com/5/zephyr/bootstrap.min.css">
<title>OneKeePass Password Manager</title>
</head>
<body>
<nav class="navbar navbar-dark bg-primary">
<div class="container-fluid">
<span class="navbar-brand">OneKeePass</span>
</div>
</nav>
<div style="margin-top: 50px;" class="container">
<h1 style="text-align: center; margin-bottom: 50px;"> OneKeePass Password Manager </h1>
<div> <h1 style="margin-bottom:50px;" align="center">
<img src="images/okp_128.png" alt="OneKeePass" width="128" />
<br>
</h1>
<p><strong>OneKeePass</strong> is a cross-platform,open source and secure password manager. It supports the KeePass-compatible database (Kdbx 4.x). It stores and manages all your passwords and other sensitive information in a single encrypted file that can be stored in any location, including private and public cloud solutions. The database is locked with a master key.</p>
<p>All created database files are encrypted using the best and most secure encryption algorithms currently known (AES-256, ChaCha20)</p>
<h2 id="features">Features</h2>
<ul>
<li>Any number of databases can be created and used</li>
<li>Optional additional security by using a key file with or without a master password</li>
<li>Fully offline </li>
<li>Entries are grouped as Types or Categories or the standard Group tree</li>
<li>Custom entry type with any set of fields can be created as template and used to create entries</li>
<li>Any number of custom fields can be added</li>
<li>Custom fields can be organized as sections</li>
<li>Upload attachments to an entry</li>
<li>Basic Auto-Type feature that sends simulated keypresses to other applications in macOS</li>
<li>Quick database unlock feature using TouchID (macOS,iOS, Android apps) </li>
</ul>
<h2 id="installation-and-quick-start">Installation and Quick start</h2>
<p>You can start using OneKeePass on your Windows, macOS, or Linux computer using the latest pre-compiled binaries from the <strong><a href="https://github.com/OneKeePass/desktop/releases">downloads page</a></strong></p>
<p>OneKeePass is also available for iOS and Android platforms. See <a href="https://github.com/OneKeePass/mobile">here</a> for details</p>
<br>
<p>Common <strong>FAQ</strong> about the application can be found <a href="https://github.com/OneKeePass/desktop/blob/main/docs/FAQ.md">here</a></p>
<h2 id="how-to-build">How to build</h2>
<p>OneKeePass is developed primarily using the ClojureScript and Rust programming languages and is built with - <a href="https://tauri.app/">Tauri</a>,<a href="https://react.dev/">React</a>,<a href="https://mui.com/">MUI</a> and many Rust crates</p>
<p>To build your own binary, please follow the instructions <a href="https://onekeepass.github.io/./docs/BUILD.md">here</a></p>
<h2 id="how-to-contribute">How to Contribute</h2>
<p>The CONTRIBUTING document and other guidelines for code contributions are not yet ready. Till that time, please feel free to::</p>
<ul>
<li><a href="https://github.com/OneKeePass/desktop/issues">Report bugs, suggest new features</a></li>
</ul>
<h2 id="privacy-policy">Privacy Policy</h2>
<p><strong>OneKeePass</strong> does not collect any personal data or password information. See our <a href="https://onekeepass.github.io/privacy/">privacy policy</a></p>
<h2 id="license">License</h2>
<p>This project is licensed under the GPLv3.</p>
</div>
<!-- <h1> Hello </h1> -->
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
</body>
</html>