feat: add legal documents module with compliance, contact, and cookie policies
Add a comprehensive LegalDocument base class in mywebdav/legal.py with abstract methods for title and content generation, along with full markdown and HTML implementations for compliance statement, contact/complaint mechanism, and cookie policy pages, replacing placeholder content with detailed regulatory and procedural information.
This commit is contained in:
@@ -1,55 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cookie Policy - MyWebdav Cloud Storage</title>
|
||||
<link rel="stylesheet" href="/static/css/style.css">
|
||||
<title>Cookie Policy</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Times New Roman', serif;
|
||||
line-height: 1.6;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
color: #333;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: #2c3e50;
|
||||
margin-top: 30px;
|
||||
}
|
||||
h1 { font-size: 2em; border-bottom: 2px solid #3498db; padding-bottom: 10px; }
|
||||
h2 { font-size: 1.5em; border-bottom: 1px solid #bdc3c7; padding-bottom: 5px; }
|
||||
ul { margin-left: 20px; }
|
||||
li { margin-bottom: 8px; }
|
||||
strong { color: #2c3e50; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Cookie Policy</h1>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Cookie Policy</h1>
|
||||
<p><strong>Last Updated:</strong> November 12, 2025</p>
|
||||
<p>This Cookie Policy (\"Agreement\") is entered into by and between:</p>
|
||||
<p><strong>Company:</strong> MyWebdav Technologies<br />
|
||||
Address: [Company Address]<br />
|
||||
Website: https://mywebdav.com </p>
|
||||
<p>and</p>
|
||||
<p><strong>User:</strong> Any individual or entity accessing or using the Website.</p>
|
||||
<h2>1. Purpose</h2>
|
||||
<p>This Agreement sets forth the terms under which the Company uses cookies and similar technologies on its Website. By accessing or using the Website, the User acknowledges and agrees to the use of cookies as described herein.</p>
|
||||
<h2>2. Definition of Cookies</h2>
|
||||
<p>Cookies are small text files stored on the User's device when visiting the Website. They help the Website recognize returning visitors, store user preferences, and improve overall performance and functionality.</p>
|
||||
<h2>3. Types of Cookies Used</h2>
|
||||
<p>The Website may use the following types of cookies:</p>
|
||||
<h1>Cookie Policy</h1>
|
||||
<p><em>Last Updated: November 13, 2025</em></p>
|
||||
|
||||
<h2>1. What Are Cookies</h2>
|
||||
<p>Cookies are small text files stored on your device when you visit our Service. They help us provide a better user experience.</p>
|
||||
|
||||
<h2>2. Types of Cookies We Use</h2>
|
||||
|
||||
<h3>2.1 Essential Cookies</h3>
|
||||
<p>Required for basic Service functionality:</p>
|
||||
<ul>
|
||||
<li><strong>Strictly Necessary Cookies</strong> – Essential for basic website functionality, such as page navigation and secure access to areas of the site.</li>
|
||||
<li><strong>Performance Cookies</strong> – Collect anonymous data to analyze website traffic and usage patterns.</li>
|
||||
<li><strong>Functional Cookies</strong> – Remember user choices and preferences to enhance the user experience.</li>
|
||||
<li><strong>Targeting/Advertising Cookies</strong> – Used to deliver relevant advertisements and track the effectiveness of marketing campaigns.</li>
|
||||
<li>Authentication and session management</li>
|
||||
<li>Security features</li>
|
||||
</ul>
|
||||
|
||||
<h3>2.2 Functional Cookies</h3>
|
||||
<p>Enhance your experience:</p>
|
||||
<ul>
|
||||
<li>Language preferences</li>
|
||||
<li>Theme settings</li>
|
||||
</ul>
|
||||
|
||||
<h3>2.3 Analytics Cookies</h3>
|
||||
<p>Help us understand usage:</p>
|
||||
<ul>
|
||||
<li>Page views and user journeys</li>
|
||||
<li>Performance metrics</li>
|
||||
</ul>
|
||||
|
||||
<h3>2.4 Marketing Cookies</h3>
|
||||
<p>Used for targeted advertising (with consent):</p>
|
||||
<ul>
|
||||
<li>Personalized recommendations</li>
|
||||
</ul>
|
||||
|
||||
<h2>3. Cookie Management</h2>
|
||||
<p>You can control cookies through:</p>
|
||||
<ul>
|
||||
<li>Browser settings</li>
|
||||
<li>Our cookie preference center</li>
|
||||
<li>Opt-out links in marketing emails</li>
|
||||
</ul>
|
||||
|
||||
<h2>4. Third-Party Cookies</h2>
|
||||
<p>The Website may include cookies set by third-party services (such as Google Analytics, YouTube, or Facebook) to enable embedded content, analytics, or advertising features. These cookies are subject to the respective third parties' privacy and cookie policies.</p>
|
||||
<h2>5. Consent</h2>
|
||||
<p>By continuing to use the Website, the User consents to the use of cookies as outlined in this Agreement. Consent is obtained via a cookie banner or pop-up notice upon first visit. Users may withdraw or adjust consent at any time through browser settings or cookie preferences on the Website.</p>
|
||||
<h2>6. Cookie Duration</h2>
|
||||
<p>Cookies may be either "session" cookies (which expire when the browser is closed) or "persistent" cookies (which remain on the User's device for a specified period or until deleted).</p>
|
||||
<h2>7. Managing Cookies</h2>
|
||||
<p>Users can control, block, or delete cookies through their browser settings. However, disabling certain cookies may impair the functionality and user experience of the Website.</p>
|
||||
<h2>8. Policy Modifications</h2>
|
||||
<p>The Company reserves the right to amend or update this Cookie Policy at any time. Updated versions will be posted on the Website with the revised effective date.</p>
|
||||
<h2>9. Governing Law</h2>
|
||||
<p>This Agreement shall be governed by and construed in accordance with the laws of the Netherlands, without regard to its conflict of law principles.</p>
|
||||
<p><strong>Effective Date:</strong> November 12, 2025</p>
|
||||
<p>This Cookie Policy is effective as of the date first accessed by the User and remains in effect until superseded or amended.</p>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="/">Back to MyWebdav</a>
|
||||
</footer>
|
||||
</div>
|
||||
<p>We may use third-party services that set cookies:</p>
|
||||
<ul>
|
||||
<li>Analytics providers</li>
|
||||
<li>Payment processors</li>
|
||||
<li>Social media integrations</li>
|
||||
</ul>
|
||||
|
||||
<h2>5. Your Rights</h2>
|
||||
<p>Under GDPR, you have rights regarding cookie-based processing:</p>
|
||||
<ul>
|
||||
<li>Right to information</li>
|
||||
<li>Right to withdraw consent</li>
|
||||
<li>Right to object</li>
|
||||
</ul>
|
||||
|
||||
<h2>6. Updates</h2>
|
||||
<p>We may update this policy. Material changes will be communicated via the Service.</p>
|
||||
|
||||
<hr>
|
||||
<h3>Contact Information</h3>
|
||||
<p>If you have any questions about this cookie policy, please contact us:</p>
|
||||
<ul>
|
||||
<li><strong>Email:</strong> <a href="mailto:legal@mywebdav.eu">legal@mywebdav.eu</a></li>
|
||||
<li><strong>Website:</strong> <a href="https://mywebdav.eu">https://mywebdav.eu</a></li>
|
||||
<li><strong>Address:</strong> MyWebdav Technologies, European Union</li>
|
||||
</ul>
|
||||
<p>MyWebdav Technologies</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user