-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (70 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Private Vault By True Privacy</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" sizes="32x32">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<style>
/* Add custom styles here */
body {
background-color: #f8f9fa;
}
.jumbotron {
background-color: #007bff;
color: #fff;
padding: 10px;
}
</style>
</head>
<body>
<div class="jumbotron text-center">
<h1>Welcome to True Privacy</h1>
<p>Your trusted partner in keeping your data safe!</p>
</div>
<div class="container">
<div class="alert alert-info" role="alert">
We believe that sensitive data must be kept encrypted, even locally, and encryption software shouldn't need payments! Thus all of our software are free forever!
</div>
<!-- <h2> Our Products List: </h2> -->
<div class="row">
<div class="col-md-6">
<h3>Private Vault</h3>
<p>My Private Vault is a general-purpose Windows application to encrypt your sensitive files (string AES algorithm) locally. Did you know that trojans and other kinds of malware can easily access all your files after getting into your machine?</p>
<p>With this free software, you can easily:</p>
<ul>
<li>Encrypt files locally with strong AES encryption,</li>
<li>Organize photos, files and folders securely,</li>
<li>Password protection for enhanced security,</li>
<li>Back up your encrypted files regularly,</li>
<li>Manage, view and edit your photos, notes, videos, and more.</li>
</ul>
<p>Download My Private Vault now and take control of your privacy!</p>
<a href="https://github.com/trueprivacy/trueprivacy.github.io/releases/download/latest/PrivateVault-latest.exe" class="btn btn-primary">Download (.exe) For Windows</a>
or <a href="https://www.softpedia.com/get/Security/Encrypting/Private-Vault.shtml">Download From Softpedia</a>
</div>
<div class="col-md-6">
<!-- Placeholder for image, replace src with your image -->
<a href="https://raw.githubusercontent.com/trueprivacy/trueprivacy.github.io/main/guide.jpg">
<img src="https://raw.githubusercontent.com/trueprivacy/trueprivacy.github.io/main/guide.jpg" width=400 class="img-fluid" alt="My Private Vault">
</a>
<br />
<a href="https://www.softpedia.com/get/Security/Encrypting/Private-Vault.shtml">
<img src="https://www.softpedia.com/_img/softpedia_100_clean.png?2023_1" width=100 class="img-fluid" alt="Software tested by Softpedia: Clean">
</a>
</div>
</div>
</div>
<div class="container mt-4 footer">
<a href="/privacy.html">Privacy Policy</a> -
<a href="/terms.html">Terms</a>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>