34462-vm/privacy.php
Flatlogic Bot dcf4a840d2 1
2025-09-28 21:18:42 +00:00

34 lines
1.0 KiB
PHP

<?php
// /workspace/privacy.php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Coral Hub</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body { padding-top: 2rem; padding-bottom: 2rem; }
.container { max-width: 800px; }
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="text-muted">Last updated: <?php echo date('F j, Y'); ?></p>
<p>This is a placeholder for your privacy policy. You should replace this content with your own policy that details how you collect, use, and protect your users' data.</p>
<h2>Information We Collect</h2>
<p>...</p>
<h2>How We Use Information</h2>
<p>...</p>
<h2>Data Sharing</h2>
<p>...</p>
<a href="/">Go back to the homepage</a>
</div>
</body>
</html>