50 lines
1.8 KiB
PHP
50 lines
1.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 - Kalkulator Finansowy</title>
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background-color: #f4f7f9;
|
|
}
|
|
.legal-container {
|
|
background: #ffffff;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
|
|
max-width: 800px;
|
|
width: 90%;
|
|
}
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
margin-bottom: 15px;
|
|
line-height: 1.6;
|
|
}
|
|
a.back-link {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="legal-container">
|
|
<h1>Privacy Policy</h1>
|
|
<p>This website is a simple financial calculator. We are committed to protecting your privacy.</p>
|
|
<p><strong>No Data Collection:</strong> We do not collect, store, process, or share any personal data from our users. All calculations are performed directly in your web browser ("client-side"). Nothing is ever sent to our servers.</p>
|
|
<p><strong>No Cookies or Tracking:</strong> We do not use cookies, tracking pixels, or any other analytics or tracking technologies.</p>
|
|
<p><strong>No Guarantees:</strong> This tool is for informational purposes only. We provide no guarantees of accuracy and are not liable for any decisions made based on its calculations.</p>
|
|
<a href="/" class="back-link">← Back to Calculator</a>
|
|
</div>
|
|
</body>
|
|
</html>
|