Files
the-jailor/wwwroot/legal/privacy/content.html
2025-11-09 10:23:23 +01:00

67 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" />
<meta name="description" content="Privacy notice for Instagram and TikTok API integrations." />
<title>Privacy Notice | The Jailor</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background-color: #fafafa;
color: #333;
margin: 0;
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.privacy-notice {
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
max-width: 600px;
padding: 2rem;
text-align: left;
}
h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #222;
}
p {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 1rem;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
font-size: 0.9rem;
color: #777;
margin-top: 1.5rem;
}
</style>
</head>
<body>
<main class="privacy-notice" aria-labelledby="privacy-title" role="region">
<h1 id="privacy-title">Privacy Notice</h1>
<p>
This app connects to Instagram and/or TikTok APIs to display or manage your social content with your permission.
We only access basic profile information and media data that you authorize.
This data is used solely to provide the features you request.
</p>
<p>
We do not share personal data with third parties for marketing or analytics purposes.
You can revoke access at any time through your Instagram or TikTok account settings.
</p>
<footer>© 2025 The Jailor. All rights reserved.</footer>
</main>
</body>
</html>