mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
75 lines
2.1 KiB
HTML
75 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cookie Usage List</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: 50px auto;
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
background-color: #f9f9f9;
|
|
margin: 10px 0;
|
|
padding: 15px;
|
|
border-left: 5px solid #007BFF;
|
|
font-size: 16px;
|
|
color: #333;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
li:hover {
|
|
background-color: #f1f1f1;
|
|
border-left-color: #0056b3;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
color: #007BFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>Cookie Usage List</h1>
|
|
<ul>
|
|
<li>Wii/WiiU/3DS/DSi Only Cookies: Used for the Access Warning Site</li>
|
|
<!--<li>Login Session Cookies: Don't login everytime</li>-->
|
|
<li>Accept Cookies: To check if you accepted the cookies</li>
|
|
<li><h1>Analytics</h1></li>
|
|
<li>Time on Site (Anonymous)</li>
|
|
<li>What Sites are klicked very often (Anonymous)</li>
|
|
<li>What Sites are avoided (Anonymous)</li>
|
|
<li>Why are we using our own Analytics tool and not Google Analytics? Because Google Analytics saves your IP Adress and your User Agent and more, and we don't like that</li>
|
|
<li>ReviveMii Analytics will not collect any personal data or ip adress or user agent.</li>
|
|
<li>ReviveMii Public Analytics: <a href="https://analytics.errexe.xyz/stats-gui">Visit</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|