-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
137 lines (120 loc) · 3.92 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oblivity | Privacy Policy</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Your CSS styles go here */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, #0b1e34, #1f364d);
color: #ddd;
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 80px 0;
position: relative;
z-index: 1;
background: linear-gradient(to right, #1f364d, #304e6d);
border-radius: 20px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
padding: 40px;
margin-bottom: 40px;
}
section h2 {
font-size: 2.5em;
margin-bottom: 40px;
text-align: center;
color: #fff;
animation: fadeInUp 1s ease;
}
.container p {
color: #ddd;
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 20px;
animation: fadeInUp 1s ease;
}
.scrollup {
position: fixed;
bottom: 40px;
right: 40px;
width: 50px;
height: 50px;
background: #007BFF;
color: #fff;
border-radius: 50%;
text-align: center;
line-height: 50px;
font-size: 24px;
cursor: pointer;
display: none;
z-index: 999;
}
.scrollup:hover {
background: #0056b3;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<a href="#" class="scrollup"><i class="fas fa-arrow-up"></i></a>
<section>
<div class="container">
<h2>Privacy Policy</h2>
<p>At Oblivity, we take your privacy seriously. This Privacy Policy outlines the types of personal information we collect and how we use it:</p>
<ul>
<li><strong>What We Collect:</strong></li>
<li>HWIDs</li>
<li>IP Addresses</li>
<li>Usernames</li>
<li>Discord usernames (we only log this through the Discord bot)</li>
<li>Invoices (We don't store credit card information)</li>
<li>Email addresses</li>
<li>Telegram (If in Telegram)</li>
</ul>
<p>We collect this information to ensure the security and functionality of our services. We do not share this information with third parties unless required by law or with your explicit consent.</p>
<p>By using our services, you agree to the terms outlined in this Privacy Policy.</p>
</div>
</section>
<script>
window.addEventListener('scroll', function () {
var scrollButton = document.querySelector('.scrollup');
if (window.scrollY > 500) {
scrollButton.style.display = 'block';
} else {
scrollButton.style.display = 'none';
}
});
document.querySelector('.scrollup').addEventListener('click', function () {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
</script>
</body>
</html>