You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.1 KiB
HTML
150 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Sora:wght@400;600;800&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script src="accordion.js" defer></script>
|
|
<title>Ucontrol - Categories</title>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="categories.html" class="current">Categories</a>
|
|
<a href="tips.html">Tips & tricks</a>
|
|
<a href="about.html">About</a>
|
|
</nav>
|
|
|
|
<header>
|
|
<h1 class="title">Categories</h1>
|
|
<div class="description">Fill in your preferences about topics that you care about</div>
|
|
</header>
|
|
|
|
<main class="categories">
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">The data they collect</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="collect" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">
|
|
The data that platforms are allowed to collect from you when you accept their
|
|
privacy policy.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">How do they use this data</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="usage" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">How this personal data is used by that platform.</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">Sharing data with other companies</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="third" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">
|
|
How your data or interactions on that relevant platform are passed on to other
|
|
companies.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">Location use</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="location" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">How they can use or track your location</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">The permission you give them</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="permission" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">
|
|
The approval you give platforms by agreeing to their privacy policy.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">When you upload content</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="upload" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">
|
|
What right they have if you upload content on their platform.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="accordion">
|
|
<div class="header">
|
|
<h3 class="title">Account suspension or termination</h3>
|
|
<label class="more-info">
|
|
<input type="checkbox" />
|
|
<span>?</span>
|
|
</label>
|
|
<label class="switch">
|
|
<input type="checkbox" id="suspension" />
|
|
<span class="slider round"></span>
|
|
</label>
|
|
</div>
|
|
<div class="content">
|
|
When you don't follow the guidelines of that platform and your account will be
|
|
suspended or terminated.
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|