-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
87 lines (81 loc) · 3.7 KB
/
privacy.html
File metadata and controls
87 lines (81 loc) · 3.7 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
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="CroVault is a privacy vault for your sensitive data. Store credentials, notes, and wallet addresses securely.">
<meta name="keywords" content="CroVault, privacy vault, secure storage, credentials, notes, wallet addresses">
<meta name="author" content="CroVault Team">
<meta name="theme-color" content="#051126">
<meta name="msapplication-TileColor" content="#051126">
<meta name="robots" content="index, follow">
<title>CroVault - Your privacy data safely stored on the blockchain - Privacy Policy</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="css/vault.css">
<link rel="canonical" href="https://crovault.com/privacy" />
<meta name="description" content="CroVault is a privacy vault for your sensitive data. Store credentials, notes, and wallet addresses securely.">
</head>
<body>
<div class="page-container">
<!-- Header with menu -->
<header>
<div id="headerDiv" class="header-content">
<a href="/" title="CroVault privacy-policy">
<img src="assets/images/Icon Transparent/CroVault 480.png" alt="CroVault Logo" title="CroVault Logo"/>
</a>
<div>
<span class="title">CroVault</span>
</div>
</div>
</header>
<!-- Main content -->
<div class="py-3 content">
<h1 class="h1-index">Privacy Policy</h1>
<h2>What We Collect</h2>
<p>
CroVault does not collect or store any personal information outside the blockchain.
We do not use cookies, analytics tools, trackers, or third-party scripts.
</p>
<h2>Blockchain Data</h2>
<p>
All vault data — credentials, notes, and wallet addresses — is encrypted on your device and stored directly on the blockchain.
Only you can decrypt it using your vault password and wallet signature. We cannot access, view, or recover your data.
</p>
<h2>Server Logs</h2>
<p>
Our server runs on Microsoft IIS, which keeps standard logs (e.g., IP address, time of visit, and requested URL).
These logs are used only for security and troubleshooting, and are not linked to any user identity.
</p>
<h2>Data Sharing</h2>
<p>
Sharing is fully under your control. You may choose to share specific vault data with trusted individuals.
CroVault never shares or sells any data.
</p>
<footer class="mt-4">
<p>
<strong>© <span id="year"></span> CroVault. All Rights Reserved.</strong>
|
<a href="/terms.html" class="text-light">Terms and Conditions</a>
|
<a href="/LICENSE.html" class="text-light">MIT License</a>
</p>
<div>
<a href="https://x.com/Swerfter" title="Twitter/X" class="social-link sl-style">
<i class="fab fa-x-twitter"></i>
</a>
</div>
</footer>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
// ===== Footer year =====
document.getElementById("year").textContent = new Date().getFullYear();
});
</script>
</body>
</html>