-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbye.html
More file actions
37 lines (37 loc) · 1.13 KB
/
bye.html
File metadata and controls
37 lines (37 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy Notification</title>
<style>
body {
background-color: black;
color: orange;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.notification-box {
max-width: 600px;
padding: 20px;
border: 2px solid orange;
border-radius: 10px;
text-align: center;
box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
}
</style>
</head>
<body>
<div class="notification-box">
<p>
Thank you for your response. Unfortunately, to ensure the proper functioning and security of our services,
accepting our privacy policy is necessary. If you decline, your access to some or all features of the system
may be limited. We appreciate your understanding.
</p>
</div>
</body>
</html>