feat: replace markdown legal links with html pages and add full html templates for all eight policies
Replace all eight footer legal links from .md to .html extensions in mywebdav-app.js and create corresponding HTML documents for privacy policy, data processing agreement, terms of service, cookie policy, security policy, compliance statement, data portability & deletion policy, and contact & complaint mechanism, each with placeholder content and back navigation.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Data Processing Agreement - MyWebdav Cloud Storage</title>
|
||||
<link rel="stylesheet" href="/static/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Data Processing Agreement</h1>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Data Processing Agreement (DPA)</h1>
|
||||
<p>This is a placeholder for the Data Processing Agreement.</p>
|
||||
<p>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.</p>
|
||||
<p><strong>Legal professionals need to fill in the actual content.</strong></p>
|
||||
</main>
|
||||
<footer>
|
||||
<a href="/">Back to MyWebdav</a>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user