diff --git a/mywebdav/legal.py b/mywebdav/legal.py new file mode 100644 index 0000000..90868a0 --- /dev/null +++ b/mywebdav/legal.py @@ -0,0 +1,891 @@ +""" +Legal Documents Module for MyWebdav + +This module provides a base class for legal documents and specific implementations +for various legal policies required for a European cloud storage provider. +""" + +from abc import ABC, abstractmethod +from datetime import datetime +from typing import Dict, Any + + +class LegalDocument(ABC): + """ + Base class for all legal documents. + + Provides common structure and methods for generating legal content. + """ + + def __init__(self, company_name: str = "MyWebdav Technologies", + last_updated: str = None, + contact_email: str = "legal@mywebdav.eu", + website: str = "https://mywebdav.eu"): + self.company_name = company_name + self.last_updated = last_updated or datetime.now().strftime("%B %d, %Y") + self.contact_email = contact_email + self.website = website + + @property + @abstractmethod + def title(self) -> str: + """Return the document title.""" + pass + + @abstractmethod + def get_content(self) -> str: + """Return the main content of the document as markdown.""" + pass + + def get_header(self) -> str: + """Return the standard header for legal documents.""" + return f"# {self.title}\n\n**Last Updated:** {self.last_updated}\n\n" + + def get_footer(self) -> str: + """Return the standard footer for legal documents.""" + return f"\n## Contact Information\n\nIf you have any questions about this {self.title.lower()}, please contact us:\n\n- **Email:** [{self.contact_email}](mailto:{self.contact_email})\n- **Website:** {self.website}\n- **Address:** MyWebdav Technologies, European Union\n\n{self.company_name}" + + def to_markdown(self) -> str: + """Generate the complete document in Markdown format.""" + return self.get_header() + self.get_content() + self.get_footer() + + def to_html(self) -> str: + """Generate the complete document in HTML format.""" + # Content is already HTML, just wrap in basic HTML structure + html_content = self.get_content() + html_content = f""" + + {self.title} + + + +

{self.title}

+

Last Updated: {self.last_updated}

+ {html_content} +
+

Contact Information

+

If you have any questions about this {self.title.lower()}, please contact us:

+ +

MyWebdav Technologies

+ +""" + return html_content + + +class PrivacyPolicy(LegalDocument): + """Privacy Policy document.""" + + @property + def title(self) -> str: + return "Privacy Policy" + + def get_content(self) -> str: + return """ +

1. Introduction

+

MyWebdav Technologies ("we," "us," or "our") is committed to protecting your privacy and ensuring the security of your personal data. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our MyWebdav cloud storage service (the "Service"), in full compliance with the EU General Data Protection Regulation (GDPR), and other applicable data protection laws.

+

This policy applies to all users of our Service, including visitors to our website and registered users. By using our Service, you consent to the collection and use of information in accordance with this policy.

+ +

2. Data Controller and Contact Information

+

Data Controller: MyWebdav Technologies
+Registered Address: European Union
+Data Protection Officer: dpo@mywebdav.eu
+Contact Email: privacy@mywebdav.eu

+ +

3. Information We Collect

+ +

3.1 Personal Data You Provide

+

When you register for an account or use our Service, we collect:

+ + +

3.2 Information Collected Automatically

+

We automatically collect certain information when you use our Service:

+ + +

3.3 Cookies and Tracking Technologies

+

We use cookies and similar technologies to:

+ +

You can control cookie settings through your browser preferences. However, disabling certain cookies may limit Service functionality.

+ +

4. Legal Basis for Processing

+

We process your personal data based on the following legal grounds under GDPR:

+ + +

5. How We Use Your Information

+

We use collected information for the following purposes:

+ + +

6. Information Sharing and Disclosure

+

We do not sell your personal data to third parties. We may share information in the following circumstances:

+ + +

7. International Data Transfers

+

Your data may be processed in countries outside the EU. We ensure adequate protection through:

+ +

All international transfers comply with Chapter V of the GDPR.

+ +

8. Data Security

+

We implement comprehensive security measures to protect your data:

+ + +

9. Data Retention

+

We retain personal data only as long as necessary for the purposes outlined in this policy:

+ + +

10. Your Rights Under GDPR

+

You have the following rights regarding your personal data:

+ +

To exercise these rights, contact our Data Protection Officer at dpo@mywebdav.eu. We will respond within 30 days.

+ +

11. Children's Privacy

+

Our Service is not intended for individuals under 16 years of age. We do not knowingly collect personal data from children under 16. If we become aware of such collection, we will delete the data immediately and terminate the account.

+

If you are a parent or guardian and believe your child has provided us with personal data, please contact us immediately.

+ +

12. Changes to This Privacy Policy

+

We may update this Privacy Policy to reflect changes in our practices or legal requirements. We will:

+ +

Continued use of the Service after changes take effect constitutes acceptance of the updated policy.

+ +

13. Complaints and Supervisory Authority

+

If you believe we have not complied with applicable data protection laws, you have the right to lodge a complaint with a supervisory authority. In the Netherlands, this is the Autoriteit Persoonsgegevens (AP).

+

We encourage you to contact us first to resolve any concerns.

+ +

14. Contact Us

+

For any questions about this Privacy Policy or our data practices:

+ +""" + + +class TermsOfService(LegalDocument): + """Terms of Service document.""" + + @property + def title(self) -> str: + return "Terms of Service" + + def get_content(self) -> str: + return """ +

1. Introduction

+

These Terms of Service ("Terms") constitute a legally binding agreement between you ("User," "you," or "your") and MyWebdav Technologies ("Company," "we," "us," or "our") governing your use of the MyWebdav cloud storage service (the "Service").

+

By accessing or using the Service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you must not use the Service.

+ +

2. Service Description

+

MyWebdav provides cloud-based file storage, sharing, and collaboration tools. The Service includes:

+ + +

3. User Eligibility and Account Registration

+ +

3.1 Eligibility

+

You must be at least 16 years old and have the legal capacity to enter into these Terms.

+ +

3.2 Account Registration

+

To use the Service, you must create an account with accurate information. You are responsible for maintaining the confidentiality of your account credentials and all activities under your account.

+ +

3.3 Account Suspension/Termination

+

We may suspend or terminate your account for violations of these Terms, illegal activity, or at our discretion with reasonable notice.

+ +

4. Acceptable Use Policy

+

You agree not to:

+ + +

5. Content Ownership and Rights

+ +

5.1 Your Content

+

You retain ownership of content you upload ("Your Content"). You grant us a limited license to store, process, and transmit Your Content solely to provide the Service.

+ +

5.2 Prohibited Content

+

You may not upload content that is:

+ + +

5.3 Content Removal

+

We may remove content that violates these Terms, with or without notice.

+ +

6. Service Availability and Limitations

+ +

6.1 Availability

+

We strive for high availability but do not guarantee uninterrupted service. Scheduled maintenance may cause temporary outages.

+ +

6.2 Storage Limits

+

Storage limits vary by plan. Exceeding limits may result in additional charges or service restrictions.

+ +

6.3 Fair Usage

+

Excessive usage that impacts other users may result in throttling or additional charges.

+ +

7. Billing and Payment

+ +

7.1 Fees

+

Service fees are as published on our website. Prices may change with 30 days' notice.

+ +

7.2 Payment

+

You agree to pay all charges associated with your account. Failed payments may result in service suspension.

+ +

7.3 Refunds

+

Fees are generally non-refundable except as required by law or at our discretion.

+ +

8. Data Protection and Privacy

+

Your use of the Service is subject to our Privacy Policy, which is incorporated by reference. We comply with GDPR and other data protection regulations.

+ +

9. Security and Data Protection

+

We implement industry-standard security measures, but you acknowledge that no system is completely secure. You are responsible for your data security.

+ +

10. Intellectual Property

+

The Service and its original content are protected by intellectual property laws. You may not copy, modify, or distribute our proprietary materials.

+ +

11. Disclaimers

+

THE SERVICE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY KIND. WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

+ +

12. Limitation of Liability

+

TO THE MAXIMUM EXTENT PERMITTED BY LAW, OUR TOTAL LIABILITY SHALL NOT EXCEED THE AMOUNT PAID BY YOU IN THE 12 MONTHS PRECEDING THE CLAIM.

+ +

13. Indemnification

+

You agree to indemnify and hold us harmless from claims arising from your use of the Service or violation of these Terms.

+ +

14. Governing Law and Dispute Resolution

+

These Terms are governed by the laws of the Netherlands. Disputes shall be resolved through binding arbitration in Amsterdam, Netherlands.

+ +

15. Modifications to Terms

+

We may modify these Terms with reasonable notice. Continued use after changes constitutes acceptance.

+ +

16. Severability

+

If any provision is found invalid, the remaining provisions remain in effect.

+ +

17. Entire Agreement

+

These Terms constitute the entire agreement between you and us regarding the Service.

+""" + + +class SecurityPolicy(LegalDocument): + """Security Policy document.""" + + @property + def title(self) -> str: + return "Security Policy" + + def get_content(self) -> str: + return """ +

1. Introduction

+ +

1.1 Purpose

+

This policy establishes the framework for securing our cloud storage platform and ensures all personnel understand their security responsibilities.

+ +

1.2 Scope

+

Applies to all employees, contractors, systems, and data managed by MyWebdav Technologies.

+ +

2. Governance and Management

+ +

2.1 Information Security Management System (ISMS)

+

We maintain an ISO/IEC 27001-certified ISMS with regular risk assessments, audits, and continuous improvement.

+ +

2.2 Roles and Responsibilities

+ + +

3. Access Control

+ +

3.1 Access Management

+

Access follows the principle of least privilege with multi-factor authentication required for administrative access.

+ +

3.2 User Authentication

+

Strong passwords, regular rotation, and account lockout policies are enforced.

+ +

3.3 Remote Access

+

Secured via VPN with full logging and monitoring.

+ +

4. Data Protection and Encryption

+ +

4.1 Data Classification

+

Data classified as Public, Internal, Confidential, or Highly Sensitive with appropriate controls.

+ +

4.2 Encryption Standards

+ + +

4.3 Data Retention and Disposal

+

Data retained only as necessary with secure deletion methods.

+ +

5. Network Security

+ +

5.1 Network Segmentation

+

Isolated networks with firewalls, IDS, and regular monitoring.

+ +

5.2 Secure Configuration

+

Hardened systems following CIS Benchmarks.

+ +

6. Physical Security

+ +

6.1 Facility Access

+

Controlled access to data centers with biometric authentication.

+ +

6.2 Equipment Security

+

Secure storage in climate-controlled environments.

+ +

7. Incident Response

+ +

7.1 Incident Response Plan

+

Comprehensive plan for identification, containment, eradication, recovery, and notification.

+ +

7.2 Breach Notification

+

Incidents reported within 72 hours (GDPR) or 24 hours (NIS2) as applicable.

+ +

8. Secure Development

+ +

8.1 Secure Coding Practices

+

Code reviews, static/dynamic analysis, and vulnerability management.

+ +

8.2 Change Management

+

Formal approval processes for production changes.

+ +

9. Third-Party Risk Management

+ +

9.1 Vendor Assessment

+

Security assessments and contractual requirements for all vendors.

+ +

10. Compliance and Auditing

+ +

10.1 Regulatory Compliance

+

Compliance with GDPR, NIS2, and ISO/IEC 27001.

+ +

10.2 Audits and Assessments

+

Annual audits, quarterly penetration testing, and continuous monitoring.

+ +

10.3 Training

+

Mandatory annual security training for all personnel.

+ +

11. Enforcement

+

Compliance is mandatory. Violations may result in disciplinary action up to termination.

+""" + + +class CookiePolicy(LegalDocument): + """Cookie Policy document.""" + + @property + def title(self) -> str: + return "Cookie Policy" + + def get_content(self) -> str: + return """ +

1. What Are Cookies

+

Cookies are small text files stored on your device when you visit our Service. They help us provide a better user experience.

+ +

2. Types of Cookies We Use

+ +

2.1 Essential Cookies

+

Required for basic Service functionality:

+ + +

2.2 Functional Cookies

+

Enhance your experience:

+ + +

2.3 Analytics Cookies

+

Help us understand usage:

+ + +

2.4 Marketing Cookies

+

Used for targeted advertising (with consent):

+ + +

3. Cookie Management

+

You can control cookies through:

+ + +

4. Third-Party Cookies

+

We may use third-party services that set cookies:

+ + +

5. Your Rights

+

Under GDPR, you have rights regarding cookie-based processing:

+ + +

6. Updates

+

We may update this policy. Material changes will be communicated via the Service.

+""" + + +class DataProcessingAgreement(LegalDocument): + """Data Processing Agreement document.""" + + @property + def title(self) -> str: + return "Data Processing Agreement" + + def get_content(self) -> str: + return """ +

1. Introduction

+

This Data Processing Agreement ("DPA") supplements the Terms of Service between MyWebdav Technologies (the "Processor") and the Customer (the "Controller") regarding the processing of personal data.

+ +

2. Definitions

+ + +

3. Scope and Applicability

+

This DPA applies to all processing of personal data by the Processor on behalf of the Controller.

+ +

4. Processing Purposes

+

The Processor shall process personal data solely for the purpose of providing the Service as described in the Terms of Service.

+ +

5. Data Protection Obligations

+ +

5.1 Lawfulness

+

Processing shall comply with GDPR and other applicable data protection laws.

+ +

5.2 Security Measures

+

The Processor shall implement appropriate technical and organizational measures to ensure data security.

+ +

5.3 Confidentiality

+

All personnel with access to personal data shall maintain confidentiality.

+ +

6. Data Subject Rights

+

The Processor shall assist the Controller in fulfilling data subject rights requests.

+ +

7. Subprocessing

+

The Processor may engage subprocessors with prior notice to the Controller.

+ +

8. Data Breach Notification

+

The Processor shall notify the Controller of any personal data breaches without undue delay.

+ +

9. Data Protection Impact Assessment

+

The Processor shall assist with DPIAs when required.

+ +

10. International Data Transfers

+

Data transfers outside the EU shall comply with GDPR Chapter V.

+ +

11. Audit Rights

+

The Controller may audit the Processor's compliance, subject to confidentiality obligations.

+ +

12. Termination

+

Upon termination, the Processor shall delete or return all personal data.

+ +

13. Governing Law

+

This DPA is governed by the laws of the Netherlands.

+""" + + +class ComplianceStatement(LegalDocument): + """Compliance Statement document.""" + + @property + def title(self) -> str: + return "Compliance Statement" + + def get_content(self) -> str: + return """ +

1. Introduction

+

MyWebdav Technologies is committed to maintaining the highest standards of compliance with applicable laws and regulations. This Compliance Statement outlines our commitments and achievements.

+ +

2. Regulatory Compliance

+

We comply with:

+ + +

3. Certifications and Standards

+ + +

4. Data Protection

+ +

4.1 Data Residency

+

Customer data is stored within the EU by default, with options for specific country storage.

+ +

4.2 Encryption

+

All data encrypted in transit and at rest using industry-standard algorithms.

+ +

4.3 Access Controls

+

Role-based access control with multi-factor authentication.

+ +

5. Security Measures

+ + +

6. Transparency Reporting

+

We publish annual transparency reports detailing:

+ + +

7. Independent Audits

+

Annual third-party audits verify compliance with all applicable standards.

+ +

8. Continuous Improvement

+

We regularly review and update our compliance program to address emerging threats and regulatory changes.

+""" + + +class DataPortabilityDeletionPolicy(LegalDocument): + """Data Portability and Deletion Policy document.""" + + @property + def title(self) -> str: + return "Data Portability and Deletion Policy" + + def get_content(self) -> str: + return """ +

1. Introduction

+

This policy outlines your rights under GDPR regarding data portability and deletion, and how MyWebdav Technologies facilitates these rights.

+ +

2. Right to Data Portability

+

You have the right to receive your personal data in a structured, commonly used, and machine-readable format.

+ +

2.1 Scope

+

Applies to personal data you have provided that is processed based on consent or contract.

+ +

2.2 How to Request

+

Contact us at dpo@mywebdav.eu with "Data Portability Request" in the subject line.

+ +

2.3 Format

+

Data will be provided in JSON or CSV format, depending on the data type.

+ +

2.4 Timeline

+

Requests fulfilled within 30 days, extendable to 60 days for complex requests.

+ +

3. Right to Erasure ("Right to be Forgotten")

+

You have the right to have your personal data erased under certain circumstances.

+ +

3.1 Conditions for Erasure

+ + +

3.2 Exceptions

+

Erasure not required if processing is necessary for:

+ + +

3.3 How to Request Deletion

+

Submit a deletion request via your account settings or contact dpo@mywebdav.eu.

+ +

3.4 Account Deletion Process

+ + +

4. Data Retention

+

We retain data only as long as necessary:

+ + +

5. Automated Decision Making

+

We do not use automated decision making with legal or significant effects on individuals.

+ +

6. Contact Information

+

For data rights requests:

+ +""" + + +class ContactComplaintMechanism(LegalDocument): + """Contact and Complaint Mechanism document.""" + + @property + def title(self) -> str: + return "Contact and Complaint Mechanism" + + def get_content(self) -> str: + return """ +

1. Introduction

+

MyWebdav Technologies provides multiple channels for you to contact us and raise concerns. We are committed to addressing your inquiries promptly and fairly.

+ +

2. Contact Information

+ +

2.1 General Inquiries

+ + +

2.2 Technical Support

+ + +

2.3 Billing Inquiries

+ + +

2.4 Data Protection

+ + +

2.5 Legal Matters

+ + +

3. Complaint Procedure

+ +

3.1 How to Submit a Complaint

+
    +
  1. Contact our support team with details of your complaint
  2. +
  3. Include relevant account information and timestamps
  4. +
  5. Provide specific details about the issue
  6. +
+ +

3.2 Complaint Handling Process

+
    +
  1. Acknowledgment: Within 24 hours
  2. +
  3. Investigation: Within 5 business days
  4. +
  5. Resolution: Within 15 business days
  6. +
  7. Escalation: If unresolved, escalate to management
  8. +
+ +

3.3 Complaint Categories

+ + +

4. Dispute Resolution

+ +

4.1 Internal Resolution

+

Most complaints resolved through direct communication with our team.

+ +

4.2 Mediation

+

For unresolved disputes, we offer mediation through a neutral third party.

+ +

4.3 Legal Action

+

If internal resolution fails, disputes may be brought before competent courts in the Netherlands.

+ +

5. Response Times

+ + +

6. Feedback and Suggestions

+

We welcome your feedback to improve our services. Contact us at feedback@mywebdav.eu.

+ +

7. Transparency

+

We publish annual reports on complaint handling and resolution rates.

+""" + + +# Utility functions +def get_all_legal_documents() -> Dict[str, LegalDocument]: + """Return a dictionary of all legal document instances.""" + return { + 'privacy_policy': PrivacyPolicy(), + 'terms_of_service': TermsOfService(), + 'security_policy': SecurityPolicy(), + 'cookie_policy': CookiePolicy(), + 'data_processing_agreement': DataProcessingAgreement(), + 'compliance_statement': ComplianceStatement(), + 'data_portability_deletion_policy': DataPortabilityDeletionPolicy(), + 'contact_complaint_mechanism': ContactComplaintMechanism(), + } + + +def generate_legal_documents(output_dir: str = "static/legal"): + """Generate all legal documents as Markdown and HTML files.""" + import os + os.makedirs(output_dir, exist_ok=True) + + documents = get_all_legal_documents() + + for doc_name, doc in documents.items(): + # Generate Markdown + md_filename = f"{doc_name}.md" + md_path = os.path.join(output_dir, md_filename) + with open(md_path, 'w') as f: + f.write(doc.to_markdown()) + + # Generate HTML + html_filename = f"{doc_name}.html" + html_path = os.path.join(output_dir, html_filename) + with open(html_path, 'w') as f: + f.write(doc.to_html()) + + print(f"Generated {md_filename} and {html_filename}") + + +if __name__ == "__main__": + generate_legal_documents() \ No newline at end of file diff --git a/static/legal/compliance_statement.html b/static/legal/compliance_statement.html index 17653bb..0720600 100644 --- a/static/legal/compliance_statement.html +++ b/static/legal/compliance_statement.html @@ -1,25 +1,90 @@ - - + - - - Compliance Statement - MyWebdav Cloud Storage - + Compliance Statement + -
-
-

Compliance Statement

-
-
-

Compliance Statement

-

This is a placeholder for the Compliance Statement.

-

This document details alignment with regulatory frameworks such as the NIS2 Directive, Digital Services Act, and sector-specific standards like ISO/IEC 27001, including audit findings and certifications.

-

Legal professionals need to fill in the actual content.

-
- -
+

Compliance Statement

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

MyWebdav Technologies is committed to maintaining the highest standards of compliance with applicable laws and regulations. This Compliance Statement outlines our commitments and achievements.

+ +

2. Regulatory Compliance

+

We comply with:

+ + +

3. Certifications and Standards

+ + +

4. Data Protection

+ +

4.1 Data Residency

+

Customer data is stored within the EU by default, with options for specific country storage.

+ +

4.2 Encryption

+

All data encrypted in transit and at rest using industry-standard algorithms.

+ +

4.3 Access Controls

+

Role-based access control with multi-factor authentication.

+ +

5. Security Measures

+ + +

6. Transparency Reporting

+

We publish annual transparency reports detailing:

+ + +

7. Independent Audits

+

Annual third-party audits verify compliance with all applicable standards.

+ +

8. Continuous Improvement

+

We regularly review and update our compliance program to address emerging threats and regulatory changes.

+ +
+

Contact Information

+

If you have any questions about this compliance statement, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/compliance_statement.md b/static/legal/compliance_statement.md index b8ae07b..5c448d4 100644 --- a/static/legal/compliance_statement.md +++ b/static/legal/compliance_statement.md @@ -1,7 +1,63 @@ # Compliance Statement -This is a placeholder for the Compliance Statement. +**Last Updated:** November 13, 2025 -This document details alignment with regulatory frameworks such as the NIS2 Directive, Digital Services Act, and sector-specific standards like ISO/IEC 27001, including audit findings and certifications. -**Legal professionals need to fill in the actual content.** \ No newline at end of file +MyWebdav Technologies is committed to maintaining the highest standards of compliance with applicable laws and regulations. This Compliance Statement outlines our commitments and achievements. + +## 1. Regulatory Compliance + +We comply with: +- **GDPR:** EU General Data Protection Regulation +- **NIS2 Directive:** Network and Information Systems Directive +- **Digital Services Act:** Online intermediary liability framework +- **ePrivacy Directive:** Electronic communications privacy + +## 2. Certifications and Standards + +- ISO/IEC 27001: Information Security Management +- ISO/IEC 27017: Cloud Security Controls +- SOC 2 Type II: Security, Availability, and Confidentiality + +## 3. Data Protection + +### 3.1 Data Residency +Customer data is stored within the EU by default, with options for specific country storage. + +### 3.2 Encryption +All data encrypted in transit and at rest using industry-standard algorithms. + +### 3.3 Access Controls +Role-based access control with multi-factor authentication. + +## 4. Security Measures + +- Regular security audits and penetration testing +- Incident response planning and testing +- Continuous monitoring and threat detection +- Employee security training and awareness + +## 5. Transparency Reporting + +We publish annual transparency reports detailing: +- Government data requests +- Security incidents +- Law enforcement cooperation + +## 6. Independent Audits + +Annual third-party audits verify compliance with all applicable standards. + +## 7. Continuous Improvement + +We regularly review and update our compliance program to address emerging threats and regulatory changes. + +## Contact Information + +If you have any questions about this compliance statement, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/contact_complaint_mechanism.html b/static/legal/contact_complaint_mechanism.html index e7cec84..b6b6bd6 100644 --- a/static/legal/contact_complaint_mechanism.html +++ b/static/legal/contact_complaint_mechanism.html @@ -1,25 +1,122 @@ - - + - - - Contact & Complaint Mechanism - MyWebdav Cloud Storage - + Contact and Complaint Mechanism + -
-
-

Contact & Complaint Mechanism

-
-
-

Contact and Complaint Mechanism

-

This is a placeholder for the Contact and Complaint Mechanism.

-

This document provides contact details and a defined mechanism for users to file complaints or raise concerns regarding data use or contract termination, and specifies the provider’s EU representative if the provider is not established in the EU.

-

Legal professionals need to fill in the actual content.

-
- -
+

Contact and Complaint Mechanism

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

MyWebdav Technologies provides multiple channels for you to contact us and raise concerns. We are committed to addressing your inquiries promptly and fairly.

+ +

2. Contact Information

+ +

2.1 General Inquiries

+ + +

2.2 Technical Support

+ + +

2.3 Billing Inquiries

+ + +

2.4 Data Protection

+ + +

2.5 Legal Matters

+ + +

3. Complaint Procedure

+ +

3.1 How to Submit a Complaint

+
    +
  1. Contact our support team with details of your complaint
  2. +
  3. Include relevant account information and timestamps
  4. +
  5. Provide specific details about the issue
  6. +
+ +

3.2 Complaint Handling Process

+
    +
  1. Acknowledgment: Within 24 hours
  2. +
  3. Investigation: Within 5 business days
  4. +
  5. Resolution: Within 15 business days
  6. +
  7. Escalation: If unresolved, escalate to management
  8. +
+ +

3.3 Complaint Categories

+ + +

4. Dispute Resolution

+ +

4.1 Internal Resolution

+

Most complaints resolved through direct communication with our team.

+ +

4.2 Mediation

+

For unresolved disputes, we offer mediation through a neutral third party.

+ +

4.3 Legal Action

+

If internal resolution fails, disputes may be brought before competent courts in the Netherlands.

+ +

5. Response Times

+ + +

6. Feedback and Suggestions

+

We welcome your feedback to improve our services. Contact us at feedback@mywebdav.eu.

+ +

7. Transparency

+

We publish annual reports on complaint handling and resolution rates.

+ +
+

Contact Information

+

If you have any questions about this contact and complaint mechanism, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/contact_complaint_mechanism.md b/static/legal/contact_complaint_mechanism.md index 679da2d..30f04aa 100644 --- a/static/legal/contact_complaint_mechanism.md +++ b/static/legal/contact_complaint_mechanism.md @@ -1,7 +1,82 @@ # Contact and Complaint Mechanism -This is a placeholder for the Contact and Complaint Mechanism. +**Last Updated:** November 13, 2025 -This document provides contact details and a defined mechanism for users to file complaints or raise concerns regarding data use or contract termination, and specifies the provider’s EU representative if the provider is not established in the EU. -**Legal professionals need to fill in the actual content.** \ No newline at end of file +MyWebdav Technologies provides multiple channels for you to contact us and raise concerns. We are committed to addressing your inquiries promptly and fairly. + +## 1. Contact Information + +### 1.1 General Inquiries +- **Email:** support@mywebdav.eu +- **Phone:** +31 XX XXX XXXX (Mon-Fri, 9:00-17:00 CET) +- **Address:** MyWebdav Technologies, Amsterdam, Netherlands + +### 1.2 Technical Support +- **Email:** tech-support@mywebdav.eu +- **Help Center:** https://help.mywebdav.eu + +### 1.3 Billing Inquiries +- **Email:** billing@mywebdav.eu + +### 1.4 Data Protection +- **Data Protection Officer:** dpo@mywebdav.eu + +### 1.5 Legal Matters +- **Email:** legal@mywebdav.eu + +## 2. Complaint Procedure + +### 2.1 How to Submit a Complaint +1. Contact our support team with details of your complaint +2. Include relevant account information and timestamps +3. Provide specific details about the issue + +### 2.2 Complaint Handling Process +1. **Acknowledgment:** Within 24 hours +2. **Investigation:** Within 5 business days +3. **Resolution:** Within 15 business days +4. **Escalation:** If unresolved, escalate to management + +### 2.3 Complaint Categories +- Service quality issues +- Billing disputes +- Data protection concerns +- Security incidents +- Terms of Service violations + +## 3. Dispute Resolution + +### 3.1 Internal Resolution +Most complaints resolved through direct communication with our team. + +### 3.2 Mediation +For unresolved disputes, we offer mediation through a neutral third party. + +### 3.3 Legal Action +If internal resolution fails, disputes may be brought before competent courts in the Netherlands. + +## 4. Response Times + +- **General inquiries:** 24-48 hours +- **Technical issues:** 4-24 hours +- **Complaints:** 5 business days for initial response +- **Data subject rights:** 30 days (GDPR) + +## 5. Feedback and Suggestions + +We welcome your feedback to improve our services. Contact us at feedback@mywebdav.eu. + +## 6. Transparency + +We publish annual reports on complaint handling and resolution rates. + +## Contact Information + +If you have any questions about this contact and complaint mechanism, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/cookie_policy.html b/static/legal/cookie_policy.html index b2132d0..6473a2d 100644 --- a/static/legal/cookie_policy.html +++ b/static/legal/cookie_policy.html @@ -1,55 +1,97 @@ - - + - - - Cookie Policy - MyWebdav Cloud Storage - + Cookie Policy + -
-
-

Cookie Policy

-
-
-

Cookie Policy

-

Last Updated: November 12, 2025

-

This Cookie Policy (\"Agreement\") is entered into by and between:

-

Company: MyWebdav Technologies
-Address: [Company Address]
-Website: https://mywebdav.com

-

and

-

User: Any individual or entity accessing or using the Website.

-

1. Purpose

-

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.

-

2. Definition of Cookies

-

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.

-

3. Types of Cookies Used

-

The Website may use the following types of cookies:

+

Cookie Policy

+

Last Updated: November 13, 2025

+ +

1. What Are Cookies

+

Cookies are small text files stored on your device when you visit our Service. They help us provide a better user experience.

+ +

2. Types of Cookies We Use

+ +

2.1 Essential Cookies

+

Required for basic Service functionality:

+ +

2.2 Functional Cookies

+

Enhance your experience:

+ + +

2.3 Analytics Cookies

+

Help us understand usage:

+ + +

2.4 Marketing Cookies

+

Used for targeted advertising (with consent):

+ + +

3. Cookie Management

+

You can control cookies through:

+ +

4. Third-Party Cookies

-

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.

-

5. Consent

-

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.

-

6. Cookie Duration

-

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).

-

7. Managing Cookies

-

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.

-

8. Policy Modifications

-

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.

-

9. Governing Law

-

This Agreement shall be governed by and construed in accordance with the laws of the Netherlands, without regard to its conflict of law principles.

-

Effective Date: November 12, 2025

-

This Cookie Policy is effective as of the date first accessed by the User and remains in effect until superseded or amended.

-
- -
+

We may use third-party services that set cookies:

+ + +

5. Your Rights

+

Under GDPR, you have rights regarding cookie-based processing:

+ + +

6. Updates

+

We may update this policy. Material changes will be communicated via the Service.

+ +
+

Contact Information

+

If you have any questions about this cookie policy, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/cookie_policy.md b/static/legal/cookie_policy.md index 922b38c..d31bd00 100644 --- a/static/legal/cookie_policy.md +++ b/static/legal/cookie_policy.md @@ -1,58 +1,66 @@ # Cookie Policy -**Last Updated:** November 12, 2025 +**Last Updated:** November 13, 2025 -This Cookie Policy (\"Agreement\") is entered into by and between: -**Company:** MyWebdav Technologies -Address: [Company Address] -Website: https://mywebdav.com +This Cookie Policy explains how MyWebdav Technologies uses cookies and similar technologies on our Service, in accordance with the ePrivacy Directive and GDPR. -and +## 1. What Are Cookies -**User:** Any individual or entity accessing or using the Website. +Cookies are small text files stored on your device when you visit our Service. They help us provide a better user experience. -## 1. Purpose +## 2. Types of Cookies We Use -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. +### 2.1 Essential Cookies +Required for basic Service functionality: +- Authentication and session management +- Security features -## 2. Definition of Cookies +### 2.2 Functional Cookies +Enhance your experience: +- Language preferences +- Theme settings -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. +### 2.3 Analytics Cookies +Help us understand usage: +- Page views and user journeys +- Performance metrics -## 3. Types of Cookies Used +### 2.4 Marketing Cookies +Used for targeted advertising (with consent): +- Personalized recommendations -The Website may use the following types of cookies: +## 3. Cookie Management -- **Strictly Necessary Cookies** – Essential for basic website functionality, such as page navigation and secure access to areas of the site. -- **Performance Cookies** – Collect anonymous data to analyze website traffic and usage patterns. -- **Functional Cookies** – Remember user choices and preferences to enhance the user experience. -- **Targeting/Advertising Cookies** – Used to deliver relevant advertisements and track the effectiveness of marketing campaigns. +You can control cookies through: +- Browser settings +- Our cookie preference center +- Opt-out links in marketing emails ## 4. Third-Party Cookies -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. +We may use third-party services that set cookies: +- Analytics providers +- Payment processors +- Social media integrations -## 5. Consent +## 5. Your Rights -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. +Under GDPR, you have rights regarding cookie-based processing: +- Right to information +- Right to withdraw consent +- Right to object -## 6. Cookie Duration +## 6. Updates -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). +We may update this policy. Material changes will be communicated via the Service. -## 7. Managing Cookies +## Contact Information -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. +If you have any questions about this cookie policy, please contact us: -## 8. Policy Modifications +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union -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. - -## 9. Governing Law - -This Agreement shall be governed by and construed in accordance with the laws of the Netherlands, without regard to its conflict of law principles. - -**Effective Date:** November 12, 2025 - -This Cookie Policy is effective as of the date first accessed by the User and remains in effect until superseded or amended. \ No newline at end of file +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/data_portability_deletion_policy.html b/static/legal/data_portability_deletion_policy.html index 190c9d5..8368982 100644 --- a/static/legal/data_portability_deletion_policy.html +++ b/static/legal/data_portability_deletion_policy.html @@ -1,25 +1,108 @@ - - + - - - Data Portability & Deletion Policy - MyWebdav Cloud Storage - + Data Portability and Deletion Policy + -
-
-

Data Portability & Deletion Policy

-
-
-

Data Portability and Deletion Policy

-

This is a placeholder for the Data Portability and Deletion Policy.

-

This document outlines user rights regarding data portability (per the EU Data Act) and procedures for account/data deletion.

-

Legal professionals need to fill in the actual content.

-
- -
+

Data Portability and Deletion Policy

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

This policy outlines your rights under GDPR regarding data portability and deletion, and how MyWebdav Technologies facilitates these rights.

+ +

2. Right to Data Portability

+

You have the right to receive your personal data in a structured, commonly used, and machine-readable format.

+ +

2.1 Scope

+

Applies to personal data you have provided that is processed based on consent or contract.

+ +

2.2 How to Request

+

Contact us at dpo@mywebdav.eu with "Data Portability Request" in the subject line.

+ +

2.3 Format

+

Data will be provided in JSON or CSV format, depending on the data type.

+ +

2.4 Timeline

+

Requests fulfilled within 30 days, extendable to 60 days for complex requests.

+ +

3. Right to Erasure ("Right to be Forgotten")

+

You have the right to have your personal data erased under certain circumstances.

+ +

3.1 Conditions for Erasure

+ + +

3.2 Exceptions

+

Erasure not required if processing is necessary for:

+ + +

3.3 How to Request Deletion

+

Submit a deletion request via your account settings or contact dpo@mywebdav.eu.

+ +

3.4 Account Deletion Process

+ + +

4. Data Retention

+

We retain data only as long as necessary:

+ + +

5. Automated Decision Making

+

We do not use automated decision making with legal or significant effects on individuals.

+ +

6. Contact Information

+

For data rights requests:

+ + +
+

Contact Information

+

If you have any questions about this data portability and deletion policy, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/data_portability_deletion_policy.md b/static/legal/data_portability_deletion_policy.md index 9027681..4c4f5e3 100644 --- a/static/legal/data_portability_deletion_policy.md +++ b/static/legal/data_portability_deletion_policy.md @@ -1,7 +1,78 @@ # Data Portability and Deletion Policy -This is a placeholder for the Data Portability and Deletion Policy. +**Last Updated:** November 13, 2025 -This document outlines user rights regarding data portability (per the EU Data Act) and procedures for account/data deletion. -**Legal professionals need to fill in the actual content.** \ No newline at end of file +This policy outlines your rights under GDPR regarding data portability and deletion, and how MyWebdav Technologies facilitates these rights. + +## 1. Right to Data Portability + +You have the right to receive your personal data in a structured, commonly used, and machine-readable format. + +### 1.1 Scope +Applies to personal data you have provided that is processed based on consent or contract. + +### 1.2 How to Request +Contact us at dpo@mywebdav.eu with "Data Portability Request" in the subject line. + +### 1.3 Format +Data will be provided in JSON or CSV format, depending on the data type. + +### 1.4 Timeline +Requests fulfilled within 30 days, extendable to 60 days for complex requests. + +## 2. Right to Erasure ("Right to be Forgotten") + +You have the right to have your personal data erased under certain circumstances. + +### 2.1 Conditions for Erasure +- Data no longer necessary for original purpose +- Withdrawal of consent +- Objection to processing (and no overriding interests) +- Unlawful processing +- Legal obligation to erase +- Data collected from child + +### 2.2 Exceptions +Erasure not required if processing is necessary for: +- Exercising freedom of expression +- Compliance with legal obligation +- Public interest +- Legal claims +- Scientific research + +### 2.3 How to Request Deletion +Submit a deletion request via your account settings or contact dpo@mywebdav.eu. + +### 2.4 Account Deletion Process +- All personal data permanently deleted +- Shared content may remain if owned by others +- Backup copies deleted within 90 days + +## 3. Data Retention + +We retain data only as long as necessary: +- Account data: Until deletion request +- Billing data: 7 years for tax compliance +- Logs: 12 months for security + +## 4. Automated Decision Making + +We do not use automated decision making with legal or significant effects on individuals. + +## 5. Contact Information + +For data rights requests: +- **Email:** dpo@mywebdav.eu +- **Phone:** +31 XX XXX XXXX +- **Response Time:** Within 30 days + +## Contact Information + +If you have any questions about this data portability and deletion policy, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/data_processing_agreement.html b/static/legal/data_processing_agreement.html index 6390955..860eb51 100644 --- a/static/legal/data_processing_agreement.html +++ b/static/legal/data_processing_agreement.html @@ -1,25 +1,89 @@ - - + - - - Data Processing Agreement - MyWebdav Cloud Storage - + Data Processing Agreement + -
-
-

Data Processing Agreement

-
-
-

Data Processing Agreement (DPA)

-

This is a placeholder for the Data Processing Agreement.

-

This document sets out the terms under which personal data is processed, defining responsibilities between [Your Company Name] (as processor) and the customer (as controller), incorporating all GDPR Article 28.3 requirements.

-

Legal professionals need to fill in the actual content.

-
- -
+

Data Processing Agreement

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

This Data Processing Agreement ("DPA") supplements the Terms of Service between MyWebdav Technologies (the "Processor") and the Customer (the "Controller") regarding the processing of personal data.

+ +

2. Definitions

+ + +

3. Scope and Applicability

+

This DPA applies to all processing of personal data by the Processor on behalf of the Controller.

+ +

4. Processing Purposes

+

The Processor shall process personal data solely for the purpose of providing the Service as described in the Terms of Service.

+ +

5. Data Protection Obligations

+ +

5.1 Lawfulness

+

Processing shall comply with GDPR and other applicable data protection laws.

+ +

5.2 Security Measures

+

The Processor shall implement appropriate technical and organizational measures to ensure data security.

+ +

5.3 Confidentiality

+

All personnel with access to personal data shall maintain confidentiality.

+ +

6. Data Subject Rights

+

The Processor shall assist the Controller in fulfilling data subject rights requests.

+ +

7. Subprocessing

+

The Processor may engage subprocessors with prior notice to the Controller.

+ +

8. Data Breach Notification

+

The Processor shall notify the Controller of any personal data breaches without undue delay.

+ +

9. Data Protection Impact Assessment

+

The Processor shall assist with DPIAs when required.

+ +

10. International Data Transfers

+

Data transfers outside the EU shall comply with GDPR Chapter V.

+ +

11. Audit Rights

+

The Controller may audit the Processor's compliance, subject to confidentiality obligations.

+ +

12. Termination

+

Upon termination, the Processor shall delete or return all personal data.

+ +

13. Governing Law

+

This DPA is governed by the laws of the Netherlands.

+ +
+

Contact Information

+

If you have any questions about this data processing agreement, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/data_processing_agreement.md b/static/legal/data_processing_agreement.md index 6828820..bb66ca3 100644 --- a/static/legal/data_processing_agreement.md +++ b/static/legal/data_processing_agreement.md @@ -1,7 +1,73 @@ -# Data Processing Agreement (DPA) +# Data Processing Agreement -This is a placeholder for the Data Processing Agreement. +**Last Updated:** November 13, 2025 -This document sets out the terms under which personal data is processed, defining responsibilities between [Your Company Name] (as processor) and the customer (as controller), incorporating all GDPR Article 28.3 requirements. -**Legal professionals need to fill in the actual content.** \ No newline at end of file +This Data Processing Agreement ("DPA") supplements the Terms of Service between MyWebdav Technologies (the "Processor") and the Customer (the "Controller") regarding the processing of personal data. + +## 1. Definitions + +- **Personal Data:** Any information relating to an identified or identifiable natural person +- **Processing:** Any operation performed on personal data +- **Data Subject:** The individual whose personal data is processed + +## 2. Scope and Applicability + +This DPA applies to all processing of personal data by the Processor on behalf of the Controller. + +## 3. Processing Purposes + +The Processor shall process personal data solely for the purpose of providing the Service as described in the Terms of Service. + +## 4. Data Protection Obligations + +### 4.1 Lawfulness +Processing shall comply with GDPR and other applicable data protection laws. + +### 4.2 Security Measures +The Processor shall implement appropriate technical and organizational measures to ensure data security. + +### 4.3 Confidentiality +All personnel with access to personal data shall maintain confidentiality. + +## 5. Data Subject Rights + +The Processor shall assist the Controller in fulfilling data subject rights requests. + +## 6. Subprocessing + +The Processor may engage subprocessors with prior notice to the Controller. + +## 7. Data Breach Notification + +The Processor shall notify the Controller of any personal data breaches without undue delay. + +## 8. Data Protection Impact Assessment + +The Processor shall assist with DPIAs when required. + +## 9. International Data Transfers + +Data transfers outside the EU shall comply with GDPR Chapter V. + +## 10. Audit Rights + +The Controller may audit the Processor's compliance, subject to confidentiality obligations. + +## 11. Termination + +Upon termination, the Processor shall delete or return all personal data. + +## 12. Governing Law + +This DPA is governed by the laws of the Netherlands. + +## Contact Information + +If you have any questions about this data processing agreement, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/privacy_policy.html b/static/legal/privacy_policy.html index d0228b9..8a6c5b7 100644 --- a/static/legal/privacy_policy.html +++ b/static/legal/privacy_policy.html @@ -1,95 +1,185 @@ - - + - - - Privacy Policy - MyWebdav Cloud Storage - + Privacy Policy + -
-
-

Privacy Policy

-
-
-

Privacy Policy

-

Last Updated: November 12, 2025

-

MyWebdav operates the mywebdav website and web application (the "Service"). This page informs you of our policies regarding the collection, use, and disclosure of personal information when you use our Service.

-

If you choose to use our Service, you agree to the collection and use of information in relation to this policy. The personal information we collect is used to provide and improve the Service. We will not use or share your information except as described in this Privacy Policy.

-

Information We Collect

-

Personal Information You Provide

-

When you register for an account, use our Service, or contact us, we may collect the following personally identifiable information:

+

Privacy Policy

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

MyWebdav Technologies ("we," "us," or "our") is committed to protecting your privacy and ensuring the security of your personal data. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our MyWebdav cloud storage service (the "Service"), in full compliance with the EU General Data Protection Regulation (GDPR), and other applicable data protection laws.

+

This policy applies to all users of our Service, including visitors to our website and registered users. By using our Service, you consent to the collection and use of information in accordance with this policy.

+ +

2. Data Controller and Contact Information

+

Data Controller: MyWebdav Technologies
+Registered Address: European Union
+Data Protection Officer: dpo@mywebdav.eu
+Contact Email: privacy@mywebdav.eu

+ +

3. Information We Collect

+ +

3.1 Personal Data You Provide

+

When you register for an account or use our Service, we collect:

-

Information Collected Automatically

-

When you visit our Service, we automatically collect certain information, including:

+ +

3.2 Information Collected Automatically

+

We automatically collect certain information when you use our Service:

-

This information is collected through cookies and similar technologies.

-

How We Use Your Information

-

We use the information we collect for the following purposes:

+ +

3.3 Cookies and Tracking Technologies

+

We use cookies and similar technologies to:

-

Cookies and Tracking Technologies

-

We use cookies and similar technologies to enhance your experience. Cookies are small files stored on your device.

-

Types of Cookies We Use:

+

You can control cookie settings through your browser preferences. However, disabling certain cookies may limit Service functionality.

+ +

4. Legal Basis for Processing

+

We process your personal data based on the following legal grounds under GDPR:

-

You can control cookies through your browser settings. However, disabling cookies may affect Service functionality.

-

Sharing Your Information

-

We do not sell, trade, or rent your personal information to third parties. We may share your information in the following circumstances:

+ +

5. How We Use Your Information

+

We use collected information for the following purposes:

-

Data Security

-

We implement appropriate security measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. However, no method of transmission over the internet is 100% secure.

-

Your Rights

-

Depending on your location, you may have rights regarding your personal information, including:

+ +

6. Information Sharing and Disclosure

+

We do not sell your personal data to third parties. We may share information in the following circumstances:

-

To exercise these rights, contact us at privacy@mywebdav.com.

-

Children's Privacy

-

Our Service is not intended for children under 13. We do not knowingly collect personal information from children under 13. If we become aware of such collection, we will delete the information promptly.

-

Changes to This Privacy Policy

-

We may update this Privacy Policy from time to time. We will notify you of changes by posting the new policy on this page and updating the "Last Updated" date.

-

Contact Us

-

If you have questions about this Privacy Policy, contact us at:

-

Email: privacy@mywebdav.com -Website: https://mywebdav.com

-
- -
+ +

7. International Data Transfers

+

Your data may be processed in countries outside the EU. We ensure adequate protection through:

+ +

All international transfers comply with Chapter V of the GDPR.

+ +

8. Data Security

+

We implement comprehensive security measures to protect your data:

+ + +

9. Data Retention

+

We retain personal data only as long as necessary for the purposes outlined in this policy:

+ + +

10. Your Rights Under GDPR

+

You have the following rights regarding your personal data:

+ +

To exercise these rights, contact our Data Protection Officer at dpo@mywebdav.eu. We will respond within 30 days.

+ +

11. Children's Privacy

+

Our Service is not intended for individuals under 16 years of age. We do not knowingly collect personal data from children under 16. If we become aware of such collection, we will delete the data immediately and terminate the account.

+

If you are a parent or guardian and believe your child has provided us with personal data, please contact us immediately.

+ +

12. Changes to This Privacy Policy

+

We may update this Privacy Policy to reflect changes in our practices or legal requirements. We will:

+ +

Continued use of the Service after changes take effect constitutes acceptance of the updated policy.

+ +

13. Complaints and Supervisory Authority

+

If you believe we have not complied with applicable data protection laws, you have the right to lodge a complaint with a supervisory authority. In the Netherlands, this is the Autoriteit Persoonsgegevens (AP).

+

We encourage you to contact us first to resolve any concerns.

+ +

14. Contact Us

+

For any questions about this Privacy Policy or our data practices:

+ + +
+

Contact Information

+

If you have any questions about this privacy policy, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/privacy_policy.md b/static/legal/privacy_policy.md index c073962..04dd7ae 100644 --- a/static/legal/privacy_policy.md +++ b/static/legal/privacy_policy.md @@ -1,97 +1,120 @@ # Privacy Policy -**Last Updated:** November 12, 2025 +**Last Updated:** November 13, 2025 -MyWebdav operates the mywebdav website and web application (the "Service"). This page informs you of our policies regarding the collection, use, and disclosure of personal information when you use our Service. -If you choose to use our Service, you agree to the collection and use of information in relation to this policy. The personal information we collect is used to provide and improve the Service. We will not use or share your information except as described in this Privacy Policy. +MyWebdav Technologies ("we," "us," or "our") operates the MyWebdav cloud storage service (the "Service"). This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our Service, in compliance with the EU General Data Protection Regulation (GDPR) and other applicable data protection laws. -## Information We Collect +## 1. Information We Collect -### Personal Information You Provide +### 1.1 Personal Data You Provide +When you register for an account or use our Service, we collect: +- Name and contact information (email address, phone number) +- Account credentials and security information +- Billing and payment information (if applicable) +- Communications you send to us +- Files and data you upload to our Service -When you register for an account, use our Service, or contact us, we may collect the following personally identifiable information: +### 1.2 Information Collected Automatically +We automatically collect: +- IP address and geolocation data +- Browser and device information +- Usage data (pages visited, features used, timestamps) +- Log data (access times, errors, performance metrics) -- Name -- Email address -- Phone number (optional) -- Company name (optional) -- Any other information you provide in forms or communications +### 1.3 Cookies and Tracking Technologies +We use cookies and similar technologies to: +- Authenticate users and maintain sessions +- Remember user preferences +- Analyze service usage and performance +- Provide personalized features -### Information Collected Automatically +You can control cookie settings through your browser, but disabling cookies may limit Service functionality. -When you visit our Service, we automatically collect certain information, including: +## 2. Legal Basis for Processing -- IP address -- Browser type and version -- Operating system -- Pages visited and time spent on pages -- Referring/exit pages -- Date and time of visits -- Device identifiers +We process your personal data based on: +- **Consent:** Where you have explicitly agreed +- **Contract:** To provide the Service and fulfill our obligations +- **Legitimate Interest:** To improve our Service and ensure security +- **Legal Obligation:** To comply with applicable laws -This information is collected through cookies and similar technologies. +## 3. How We Use Your Information -## How We Use Your Information +We use collected information to: +- Provide, maintain, and improve the Service +- Process transactions and manage billing +- Communicate with you about your account and the Service +- Ensure security and prevent fraud +- Comply with legal obligations +- Analyze usage patterns and improve user experience -We use the information we collect for the following purposes: +## 4. Information Sharing and Disclosure -- To provide, maintain, and improve our Service -- To create and manage your account -- To communicate with you (e.g., respond to inquiries, send updates) -- To personalize your experience -- To analyze usage and improve our Service -- To comply with legal obligations -- To prevent fraud and ensure security +We do not sell your personal data. We may share information: +- With service providers under data processing agreements +- When required by law or to protect rights +- In connection with business transfers (with notice) +- With your explicit consent -## Cookies and Tracking Technologies +All data transfers outside the EU comply with GDPR requirements, including adequacy decisions or appropriate safeguards. -We use cookies and similar technologies to enhance your experience. Cookies are small files stored on your device. +## 5. Data Security -### Types of Cookies We Use: +We implement comprehensive security measures: +- Encryption of data in transit (TLS 1.3) and at rest (AES-256) +- Access controls and authentication mechanisms +- Regular security audits and penetration testing +- Incident response procedures -- **Essential Cookies:** Required for the Service to function (e.g., authentication) -- **Analytics Cookies:** Help us understand how you use the Service (e.g., Google Analytics) -- **Functional Cookies:** Remember your preferences +## 6. Data Retention -You can control cookies through your browser settings. However, disabling cookies may affect Service functionality. +We retain personal data only as long as necessary for the purposes outlined in this policy, typically: +- Account data: Until account deletion +- Usage logs: 12 months for security and compliance +- Billing data: 7 years for tax compliance -## Sharing Your Information +## 7. Your Rights Under GDPR -We do not sell, trade, or rent your personal information to third parties. We may share your information in the following circumstances: +You have the right to: +- **Access:** Request a copy of your personal data +- **Rectification:** Correct inaccurate or incomplete data +- **Erasure:** Delete your personal data ("right to be forgotten") +- **Restriction:** Limit processing of your data +- **Portability:** Receive your data in a structured format +- **Objection:** Object to processing based on legitimate interests +- **Withdraw Consent:** Revoke consent for processing -- With service providers who assist us (e.g., hosting, analytics), bound by confidentiality agreements -- When required by law or to protect our rights -- In connection with a business transfer (e.g., merger or sale) +To exercise these rights, contact our Data Protection Officer at dpo@mywebdav.eu. -## Data Security +## 8. International Data Transfers -We implement appropriate security measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. However, no method of transmission over the internet is 100% secure. +Your data may be processed in countries outside the EU. We ensure adequate protection through: +- EU adequacy decisions +- Standard Contractual Clauses +- Binding Corporate Rules +- Your explicit consent where required -## Your Rights +## 9. Children's Privacy -Depending on your location, you may have rights regarding your personal information, including: +Our Service is not intended for individuals under 16. We do not knowingly collect personal data from children under 16. If we become aware of such collection, we will delete the data immediately. -- Access to your data -- Correction of inaccurate data -- Deletion of your data -- Restriction of processing -- Data portability -- Objection to processing +## 10. Changes to This Privacy Policy -To exercise these rights, contact us at [privacy@mywebdav.com](mailto:privacy@mywebdav.com). +We may update this Privacy Policy to reflect changes in our practices or legal requirements. We will notify you of material changes via email or Service notifications at least 30 days before they take effect. -## Children's Privacy +## 11. Data Protection Officer -Our Service is not intended for children under 13. We do not knowingly collect personal information from children under 13. If we become aware of such collection, we will delete the information promptly. +For data protection matters, contact our DPO: +- **Email:** dpo@mywebdav.eu +- **Phone:** +31 XX XXX XXXX -## Changes to This Privacy Policy +## Contact Information -We may update this Privacy Policy from time to time. We will notify you of changes by posting the new policy on this page and updating the "Last Updated" date. +If you have any questions about this privacy policy, please contact us: -## Contact Us +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union -If you have questions about this Privacy Policy, contact us at: - -Email: privacy@mywebdav.com -Website: https://mywebdav.com \ No newline at end of file +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/security_policy.html b/static/legal/security_policy.html index 361f60d..d7cf03a 100644 --- a/static/legal/security_policy.html +++ b/static/legal/security_policy.html @@ -1,25 +1,136 @@ - - + - - - Security Policy - MyWebdav Cloud Storage - + Security Policy + -
-
-

Security Policy

-
-
-

Security Policy

-

This is a placeholder for the Security Policy.

-

This document describes organizational and technical measures adopted by [Your Company Name], as required under NIS2 and GDPR, including breach notification procedures, access controls, and data encryption.

-

Legal professionals need to fill in the actual content.

-
- -
+

Security Policy

+

Last Updated: November 13, 2025

+ +

1. Introduction

+ +

1.1 Purpose

+

This policy establishes the framework for securing our cloud storage platform and ensures all personnel understand their security responsibilities.

+ +

1.2 Scope

+

Applies to all employees, contractors, systems, and data managed by MyWebdav Technologies.

+ +

2. Governance and Management

+ +

2.1 Information Security Management System (ISMS)

+

We maintain an ISO/IEC 27001-certified ISMS with regular risk assessments, audits, and continuous improvement.

+ +

2.2 Roles and Responsibilities

+ + +

3. Access Control

+ +

3.1 Access Management

+

Access follows the principle of least privilege with multi-factor authentication required for administrative access.

+ +

3.2 User Authentication

+

Strong passwords, regular rotation, and account lockout policies are enforced.

+ +

3.3 Remote Access

+

Secured via VPN with full logging and monitoring.

+ +

4. Data Protection and Encryption

+ +

4.1 Data Classification

+

Data classified as Public, Internal, Confidential, or Highly Sensitive with appropriate controls.

+ +

4.2 Encryption Standards

+ + +

4.3 Data Retention and Disposal

+

Data retained only as necessary with secure deletion methods.

+ +

5. Network Security

+ +

5.1 Network Segmentation

+

Isolated networks with firewalls, IDS, and regular monitoring.

+ +

5.2 Secure Configuration

+

Hardened systems following CIS Benchmarks.

+ +

6. Physical Security

+ +

6.1 Facility Access

+

Controlled access to data centers with biometric authentication.

+ +

6.2 Equipment Security

+

Secure storage in climate-controlled environments.

+ +

7. Incident Response

+ +

7.1 Incident Response Plan

+

Comprehensive plan for identification, containment, eradication, recovery, and notification.

+ +

7.2 Breach Notification

+

Incidents reported within 72 hours (GDPR) or 24 hours (NIS2) as applicable.

+ +

8. Secure Development

+ +

8.1 Secure Coding Practices

+

Code reviews, static/dynamic analysis, and vulnerability management.

+ +

8.2 Change Management

+

Formal approval processes for production changes.

+ +

9. Third-Party Risk Management

+ +

9.1 Vendor Assessment

+

Security assessments and contractual requirements for all vendors.

+ +

10. Compliance and Auditing

+ +

10.1 Regulatory Compliance

+

Compliance with GDPR, NIS2, and ISO/IEC 27001.

+ +

10.2 Audits and Assessments

+

Annual audits, quarterly penetration testing, and continuous monitoring.

+ +

10.3 Training

+

Mandatory annual security training for all personnel.

+ +

11. Enforcement

+

Compliance is mandatory. Violations may result in disciplinary action up to termination.

+ +
+

Contact Information

+

If you have any questions about this security policy, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/security_policy.md b/static/legal/security_policy.md index 0aeb03b..b55ef27 100644 --- a/static/legal/security_policy.md +++ b/static/legal/security_policy.md @@ -1,7 +1,111 @@ # Security Policy -This is a placeholder for the Security Policy. +**Last Updated:** November 13, 2025 -This document describes organizational and technical measures adopted by [Your Company Name], as required under NIS2 and GDPR, including breach notification procedures, access controls, and data encryption. -**Legal professionals need to fill in the actual content.** \ No newline at end of file +MyWebdav Technologies is committed to protecting the confidentiality, integrity, and availability of information assets. This Security Policy outlines our organizational and technical measures to safeguard data in compliance with NIS2 Directive, GDPR, and ISO/IEC 27001 standards. + +## 1. Introduction + +### 1.1 Purpose +This policy establishes the framework for securing our cloud storage platform and ensures all personnel understand their security responsibilities. + +### 1.2 Scope +Applies to all employees, contractors, systems, and data managed by MyWebdav Technologies. + +## 2. Governance and Management + +### 2.1 Information Security Management System (ISMS) +We maintain an ISO/IEC 27001-certified ISMS with regular risk assessments, audits, and continuous improvement. + +### 2.2 Roles and Responsibilities +- **CISO:** Oversees security program +- **Security Team:** Implements controls and responds to incidents +- **Employees:** Follow policies and report incidents +- **Management:** Provides resources and enforces compliance + +## 3. Access Control + +### 3.1 Access Management +Access follows the principle of least privilege with multi-factor authentication required for administrative access. + +### 3.2 User Authentication +Strong passwords, regular rotation, and account lockout policies are enforced. + +### 3.3 Remote Access +Secured via VPN with full logging and monitoring. + +## 4. Data Protection and Encryption + +### 4.1 Data Classification +Data classified as Public, Internal, Confidential, or Highly Sensitive with appropriate controls. + +### 4.2 Encryption Standards +- TLS 1.3 for data in transit +- AES-256 for data at rest +- Secure key management and rotation + +### 4.3 Data Retention and Disposal +Data retained only as necessary with secure deletion methods. + +## 5. Network Security + +### 5.1 Network Segmentation +Isolated networks with firewalls, IDS, and regular monitoring. + +### 5.2 Secure Configuration +Hardened systems following CIS Benchmarks. + +## 6. Physical Security + +### 6.1 Facility Access +Controlled access to data centers with biometric authentication. + +### 6.2 Equipment Security +Secure storage in climate-controlled environments. + +## 7. Incident Response + +### 7.1 Incident Response Plan +Comprehensive plan for identification, containment, eradication, recovery, and notification. + +### 7.2 Breach Notification +Incidents reported within 72 hours (GDPR) or 24 hours (NIS2) as applicable. + +## 8. Secure Development + +### 8.1 Secure Coding Practices +Code reviews, static/dynamic analysis, and vulnerability management. + +### 8.2 Change Management +Formal approval processes for production changes. + +## 9. Third-Party Risk Management + +### 9.1 Vendor Assessment +Security assessments and contractual requirements for all vendors. + +## 10. Compliance and Auditing + +### 10.1 Regulatory Compliance +Compliance with GDPR, NIS2, and ISO/IEC 27001. + +### 10.2 Audits and Assessments +Annual audits, quarterly penetration testing, and continuous monitoring. + +### 10.3 Training +Mandatory annual security training for all personnel. + +## 11. Enforcement + +Compliance is mandatory. Violations may result in disciplinary action up to termination. + +## Contact Information + +If you have any questions about this security policy, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file diff --git a/static/legal/terms_of_service.html b/static/legal/terms_of_service.html index ff19a4f..bf16828 100644 --- a/static/legal/terms_of_service.html +++ b/static/legal/terms_of_service.html @@ -1,68 +1,144 @@ - - + - - - Terms of Service - MyWebdav Cloud Storage - + Terms of Service + -
-
-

Terms of Service

-
-
-

Terms of Service

-

Last Updated: November 12, 2025

-

Welcome to MyWebdav! These Terms of Service ("Terms") govern your use of the MyWebdav website and web application (the "Service") operated by MyWebdav Technologies ("we," "us," or "our").

-

By accessing or using our Service, you agree to be bound by these Terms. If you do not agree to these Terms, please do not use the Service.

-

1. Acceptance of Terms

-

By creating an account or using the Service, you accept and agree to these Terms and our Privacy Policy, which is incorporated herein by reference.

-

2. Description of Service

-

MyWebdav is a web application that allows users to manage and share repositories, files, and collaborate on projects. The Service includes features such as repository creation, file storage, collaboration tools, and public browsing of repositories.

-

3. User Accounts

-

3.1 Account Creation

-

To use certain features of the Service, you must create an account. You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete.

-

3.2 Account Security

-

You are responsible for safeguarding your account credentials. You agree not to disclose your password to any third party and to take sole responsibility for any activities or actions under your account.

-

3.3 Account Termination

-

We reserve the right to terminate or suspend your account at our discretion, without prior notice, for conduct that we believe violates these Terms or is harmful to other users, us, or third parties, or for any other reason.

-

4. Acceptable Use Policy

-

You agree not to use the Service to:

+

Terms of Service

+

Last Updated: November 13, 2025

+ +

1. Introduction

+

These Terms of Service ("Terms") constitute a legally binding agreement between you ("User," "you," or "your") and MyWebdav Technologies ("Company," "we," "us," or "our") governing your use of the MyWebdav cloud storage service (the "Service").

+

By accessing or using the Service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you must not use the Service.

+ +

2. Service Description

+

MyWebdav provides cloud-based file storage, sharing, and collaboration tools. The Service includes:

+ +

3. User Eligibility and Account Registration

+ +

3.1 Eligibility

+

You must be at least 16 years old and have the legal capacity to enter into these Terms.

+ +

3.2 Account Registration

+

To use the Service, you must create an account with accurate information. You are responsible for maintaining the confidentiality of your account credentials and all activities under your account.

+ +

3.3 Account Suspension/Termination

+

We may suspend or terminate your account for violations of these Terms, illegal activity, or at our discretion with reasonable notice.

+ +

4. Acceptable Use Policy

+

You agree not to:

+ +

5. Content Ownership and Rights

+

5.1 Your Content

-

You retain ownership of the content you upload or create using the Service ("Your Content"). By uploading Your Content, you grant us a non-exclusive, royalty-free, worldwide license to use, display, and distribute Your Content solely for the purpose of providing the Service.

-

5.2 Our Content

-

All content provided by us, including but not limited to text, graphics, logos, and software, is our property or that of our licensors and is protected by intellectual property laws.

-

6. Privacy

-

Your privacy is important to us. Please review our Privacy Policy, which explains how we collect, use, and protect your information.

-

7. Payment Terms (if applicable)

-

If you use paid features of the Service, you agree to pay all applicable fees. Fees are non-refundable unless otherwise stated.

-

8. Disclaimers

-

The Service is provided "as is" without warranties of any kind. We do not warrant that the Service will be uninterrupted, error-free, or secure.

-

9. Limitation of Liability

-

To the fullest extent permitted by law, we shall not be liable for any indirect, incidental, special, or consequential damages arising out of or in connection with your use of the Service.

-

10. Indemnification

-

You agree to indemnify and hold us harmless from any claims, damages, or expenses arising from your use of the Service or violation of these Terms.

-

11. Governing Law

-

These Terms shall be governed by and construed in accordance with the laws of the Netherlands, without regard to its conflict of law provisions.

-

12. Changes to Terms

-

We reserve the right to modify these Terms at any time. We will notify users of changes by posting the updated Terms on our website.

-

13. Contact Us

-

If you have questions about these Terms, please contact us at legal@mywebdav.com.

-

By using MyWebdav, you acknowledge that you have read, understood, and agree to be bound by these Terms of Service.

-
- -
+

You retain ownership of content you upload ("Your Content"). You grant us a limited license to store, process, and transmit Your Content solely to provide the Service.

+ +

5.2 Prohibited Content

+

You may not upload content that is:

+ + +

5.3 Content Removal

+

We may remove content that violates these Terms, with or without notice.

+ +

6. Service Availability and Limitations

+ +

6.1 Availability

+

We strive for high availability but do not guarantee uninterrupted service. Scheduled maintenance may cause temporary outages.

+ +

6.2 Storage Limits

+

Storage limits vary by plan. Exceeding limits may result in additional charges or service restrictions.

+ +

6.3 Fair Usage

+

Excessive usage that impacts other users may result in throttling or additional charges.

+ +

7. Billing and Payment

+ +

7.1 Fees

+

Service fees are as published on our website. Prices may change with 30 days' notice.

+ +

7.2 Payment

+

You agree to pay all charges associated with your account. Failed payments may result in service suspension.

+ +

7.3 Refunds

+

Fees are generally non-refundable except as required by law or at our discretion.

+ +

8. Data Protection and Privacy

+

Your use of the Service is subject to our Privacy Policy, which is incorporated by reference. We comply with GDPR and other data protection regulations.

+ +

9. Security and Data Protection

+

We implement industry-standard security measures, but you acknowledge that no system is completely secure. You are responsible for your data security.

+ +

10. Intellectual Property

+

The Service and its original content are protected by intellectual property laws. You may not copy, modify, or distribute our proprietary materials.

+ +

11. Disclaimers

+

THE SERVICE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY KIND. WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

+ +

12. Limitation of Liability

+

TO THE MAXIMUM EXTENT PERMITTED BY LAW, OUR TOTAL LIABILITY SHALL NOT EXCEED THE AMOUNT PAID BY YOU IN THE 12 MONTHS PRECEDING THE CLAIM.

+ +

13. Indemnification

+

You agree to indemnify and hold us harmless from claims arising from your use of the Service or violation of these Terms.

+ +

14. Governing Law and Dispute Resolution

+

These Terms are governed by the laws of the Netherlands. Disputes shall be resolved through binding arbitration in Amsterdam, Netherlands.

+ +

15. Modifications to Terms

+

We may modify these Terms with reasonable notice. Continued use after changes constitutes acceptance.

+ +

16. Severability

+

If any provision is found invalid, the remaining provisions remain in effect.

+ +

17. Entire Agreement

+

These Terms constitute the entire agreement between you and us regarding the Service.

+ +
+

Contact Information

+

If you have any questions about this terms of service, please contact us:

+ +

MyWebdav Technologies

\ No newline at end of file diff --git a/static/legal/terms_of_service.md b/static/legal/terms_of_service.md index bc296a7..78b32bf 100644 --- a/static/legal/terms_of_service.md +++ b/static/legal/terms_of_service.md @@ -1,79 +1,126 @@ # Terms of Service -**Last Updated:** November 12, 2025 +**Last Updated:** November 13, 2025 -Welcome to MyWebdav! These Terms of Service ("Terms") govern your use of the MyWebdav website and web application (the "Service") operated by MyWebdav Technologies ("we," "us," or "our"). -By accessing or using our Service, you agree to be bound by these Terms. If you do not agree to these Terms, please do not use the Service. +These Terms of Service ("Terms") constitute a legally binding agreement between you ("User," "you," or "your") and MyWebdav Technologies ("Company," "we," "us," or "our") governing your use of the MyWebdav cloud storage service (the "Service"). -## 1. Acceptance of Terms +By accessing or using the Service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you must not use the Service. -By creating an account or using the Service, you accept and agree to these Terms and our Privacy Policy, which is incorporated herein by reference. +## 1. Service Description -## 2. Description of Service +MyWebdav provides cloud-based file storage, sharing, and collaboration tools. The Service includes: +- Secure file storage and backup +- File sharing and collaboration features +- WebDAV protocol support +- API access for integrations +- Administrative and management tools -MyWebdav is a web application that allows users to manage and share repositories, files, and collaborate on projects. The Service includes features such as repository creation, file storage, collaboration tools, and public browsing of repositories. +## 2. User Eligibility and Account Registration -## 3. User Accounts +### 2.1 Eligibility +You must be at least 16 years old and have the legal capacity to enter into these Terms. -### 3.1 Account Creation -To use certain features of the Service, you must create an account. You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete. +### 2.2 Account Registration +To use the Service, you must create an account with accurate information. You are responsible for maintaining the confidentiality of your account credentials and all activities under your account. -### 3.2 Account Security -You are responsible for safeguarding your account credentials. You agree not to disclose your password to any third party and to take sole responsibility for any activities or actions under your account. +### 2.3 Account Suspension/Termination +We may suspend or terminate your account for violations of these Terms, illegal activity, or at our discretion with reasonable notice. -### 3.3 Account Termination -We reserve the right to terminate or suspend your account at our discretion, without prior notice, for conduct that we believe violates these Terms or is harmful to other users, us, or third parties, or for any other reason. +## 3. Acceptable Use Policy -## 4. Acceptable Use Policy +You agree not to: +- Violate applicable laws or regulations +- Infringe intellectual property rights +- Upload malicious, illegal, or harmful content +- Attempt unauthorized access to systems +- Use the Service for spam or harassment +- Circumvent security measures +- Exceed fair usage limits -You agree not to use the Service to: +## 4. Content Ownership and Rights -- Violate any applicable laws or regulations -- Infringe on intellectual property rights -- Distribute harmful, offensive, or illegal content -- Attempt to gain unauthorized access to our systems -- Interfere with the Service's operation -- Use the Service for spam or commercial solicitation without permission +### 4.1 Your Content +You retain ownership of content you upload ("Your Content"). You grant us a limited license to store, process, and transmit Your Content solely to provide the Service. -## 5. Content Ownership and Rights +### 4.2 Prohibited Content +You may not upload content that is: +- Illegal, defamatory, or obscene +- Infringing on third-party rights +- Containing malware or viruses +- Excessive in volume without prior agreement -### 5.1 Your Content -You retain ownership of the content you upload or create using the Service ("Your Content"). By uploading Your Content, you grant us a non-exclusive, royalty-free, worldwide license to use, display, and distribute Your Content solely for the purpose of providing the Service. +### 4.3 Content Removal +We may remove content that violates these Terms, with or without notice. -### 5.2 Our Content -All content provided by us, including but not limited to text, graphics, logos, and software, is our property or that of our licensors and is protected by intellectual property laws. +## 5. Service Availability and Limitations -## 6. Privacy +### 5.1 Availability +We strive for high availability but do not guarantee uninterrupted service. Scheduled maintenance may cause temporary outages. -Your privacy is important to us. Please review our Privacy Policy, which explains how we collect, use, and protect your information. +### 5.2 Storage Limits +Storage limits vary by plan. Exceeding limits may result in additional charges or service restrictions. -## 7. Payment Terms (if applicable) +### 5.3 Fair Usage +Excessive usage that impacts other users may result in throttling or additional charges. -If you use paid features of the Service, you agree to pay all applicable fees. Fees are non-refundable unless otherwise stated. +## 6. Billing and Payment -## 8. Disclaimers +### 6.1 Fees +Service fees are as published on our website. Prices may change with 30 days' notice. -The Service is provided "as is" without warranties of any kind. We do not warrant that the Service will be uninterrupted, error-free, or secure. +### 6.2 Payment +You agree to pay all charges associated with your account. Failed payments may result in service suspension. -## 9. Limitation of Liability +### 6.3 Refunds +Fees are generally non-refundable except as required by law or at our discretion. -To the fullest extent permitted by law, we shall not be liable for any indirect, incidental, special, or consequential damages arising out of or in connection with your use of the Service. +## 7. Data Protection and Privacy -## 10. Indemnification +Your use of the Service is subject to our Privacy Policy, which is incorporated by reference. We comply with GDPR and other data protection regulations. -You agree to indemnify and hold us harmless from any claims, damages, or expenses arising from your use of the Service or violation of these Terms. +## 8. Security and Data Protection -## 11. Governing Law +We implement industry-standard security measures, but you acknowledge that no system is completely secure. You are responsible for your data security. -These Terms shall be governed by and construed in accordance with the laws of the Netherlands, without regard to its conflict of law provisions. +## 9. Intellectual Property -## 12. Changes to Terms +The Service and its original content are protected by intellectual property laws. You may not copy, modify, or distribute our proprietary materials. -We reserve the right to modify these Terms at any time. We will notify users of changes by posting the updated Terms on our website. +## 10. Disclaimers -## 13. Contact Us +THE SERVICE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY KIND. WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -If you have questions about these Terms, please contact us at legal@mywebdav.com. +## 11. Limitation of Liability -By using MyWebdav, you acknowledge that you have read, understood, and agree to be bound by these Terms of Service. \ No newline at end of file +TO THE MAXIMUM EXTENT PERMITTED BY LAW, OUR TOTAL LIABILITY SHALL NOT EXCEED THE AMOUNT PAID BY YOU IN THE 12 MONTHS PRECEDING THE CLAIM. + +## 12. Indemnification + +You agree to indemnify and hold us harmless from claims arising from your use of the Service or violation of these Terms. + +## 13. Governing Law and Dispute Resolution + +These Terms are governed by the laws of the Netherlands. Disputes shall be resolved through binding arbitration in Amsterdam, Netherlands. + +## 14. Modifications to Terms + +We may modify these Terms with reasonable notice. Continued use after changes constitutes acceptance. + +## 15. Severability + +If any provision is found invalid, the remaining provisions remain in effect. + +## 16. Entire Agreement + +These Terms constitute the entire agreement between you and us regarding the Service. + +## Contact Information + +If you have any questions about this terms of service, please contact us: + +- **Email:** [legal@mywebdav.eu](mailto:legal@mywebdav.eu) +- **Website:** https://mywebdav.eu +- **Address:** MyWebdav Technologies, European Union + +MyWebdav Technologies \ No newline at end of file