Initial commit

This commit is contained in:
2025-11-09 10:23:23 +01:00
commit f890341ffe
34 changed files with 1058 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
<!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>

View File

@@ -0,0 +1,103 @@
<!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="Terms of Service for Social App using Instagram and TikTok APIs." />
<title>Terms of Service | 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="terms" aria-labelledby="terms-title" role="region">
<h1 id="terms-title">Terms of Service</h1>
<p>
By using this app, you agree to these Terms of Service and our
<a href="https://the-jailor.naaturel.be/privacy" target="_blank" rel="noopener noreferrer">Privacy Policy</a>.
Please read them carefully before using our features.
</p>
<h2>1. Use of Service</h2>
<p>
This app allows you to connect your Instagram and/or TikTok accounts to access and manage your content with your consent.
You agree to use the service only as permitted by law and in accordance with the respective platform policies.
</p>
<h2>2. User Data and Permissions</h2>
<p>
We only access data that you explicitly authorize through the Instagram or TikTok APIs.
This includes limited profile and media data necessary to deliver the requested functionality.
You can revoke this access at any time in your social platform account settings.
</p>
<h2>3. Restrictions</h2>
<p>
You may not use this service to infringe on the rights of others, engage in unauthorized scraping,
distribute spam, or violate any laws or platform terms.
</p>
<h2>4. Service Availability</h2>
<p>
We may modify, suspend, or discontinue certain features at any time.
We are not liable for downtime or disruptions caused by third-party API changes or technical issues.
</p>
<h2>5. Limitation of Liability</h2>
<p>
To the maximum extent permitted by law, we are not responsible for any indirect, incidental, or consequential damages arising from your use of the service.
</p>
<h2>6. Changes to Terms</h2>
<p>
We may update these Terms from time to time. Continued use of the app after updates means you accept the revised terms.
</p>
<footer>
© 2025 The Jailor. All rights reserved. |
</footer>
</main>
</body>
</html>