-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
118 lines (112 loc) · 4.63 KB
/
terms.html
File metadata and controls
118 lines (112 loc) · 4.63 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
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
<!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 - Terms</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/terms" />
<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">Terms and conditions</h1>
<h2>Self-Custody</h2>
<p>
CroVault is a self-custody vault. You are solely responsible for managing your:
<ul>
<li>Wallet and private keys</li>
<li>Vault password</li>
<li>Encrypted data</li>
</ul>
We cannot access or recover your data if you lose your wallet or password.
</p>
<h2>No Guarantees</h2>
<p>
CroVault is provided “as is” without warranties of any kind. We do not guarantee:
<ul>
<li>Availability or uptime</li>
<li>Recovery of lost data</li>
<li>Compatibility with all devices or wallets</li>
</ul>
We do our best to maintain the dApp, but you use it at your own risk.
</p>
<h2>Acceptable Use</h2>
<p>
You agree not to use CroVault to store or share:
<ul>
<li>Illegal content or materials</li>
<li>Malicious code or harmful data</li>
<li>Spam or phishing attempts</li>
<li>Content that violates the rights of others</li>
</ul>
We reserve the right to block access to any address involved in abuse or illegal activity.
</p>
<h2>Blockchain Usage</h2>
<p>
Your data is encrypted and stored on the Cronos blockchain. This means:
<ul>
<li>Data is permanent and cannot be deleted from the blockchain</li>
<li>You are responsible for gas fees and blockchain interactions</li>
<li>We cannot change or undo blockchain transactions</li>
<li>Data is publicly visible, but encrypted</li>
</ul>
</p>
<h2>No Data Collection</h2>
<p>
CroVault does not collect personal information.<br>
Standard server logs (IIS) are kept for security only.
</p>
<h2>Changes to Terms</h2>
<p>
These terms may be updated at any time.<br>
Continued use of CroVault after updates means you accept the changes.
</p>
<footer class="mt-4">
<p>
<strong>© <span id="year"></span> CroVault. All Rights Reserved.</strong>
|
<a href="/privacy.html" class="text-light">Privacy Policy</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>