57 lines
2.8 KiB
PHP
57 lines
2.8 KiB
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 - survey-demo-app</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="survey app, form builder, online forms, data collection, feedback tool, custom surveys, Flatlogic Generator">
|
|
<meta property="og:title" content="survey-demo-app">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">SurveyBuilder</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="section">
|
|
<div class="container">
|
|
<h1 class="mb-4">Privacy Policy</h1>
|
|
<p>This is a placeholder for your privacy policy. You should replace this content with your own policy, detailing how you collect, use, and protect your users' data.</p>
|
|
|
|
<h2>Information We Collect</h2>
|
|
<p>Detail the types of information you collect from users, such as personal identification information (name, email address, etc.) and non-personal information (browser type, etc.).</p>
|
|
|
|
<h2>How We Use Information</h2>
|
|
<p>Explain how you use the collected information, for example, to provide and improve your services, to communicate with users, and for marketing purposes.</p>
|
|
|
|
<h2>Data Protection</h2>
|
|
<p>Describe the measures you take to protect user data from unauthorized access or disclosure.</p>
|
|
|
|
<p>Last updated: <?php echo date("F j, Y"); ?></p>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer mt-auto">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> SurveyBuilder. All Rights Reserved.</p>
|
|
<p><a href="/">Home</a></p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|