52 lines
2.0 KiB
PHP
52 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Terms of Service - 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, ul {
|
|
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>Terms of Service</h1>
|
|
<p>By using the calculator on this website, you agree to the following terms and conditions:</p>
|
|
<ul>
|
|
<li><strong>For Informational Purposes Only:</strong> The calculations provided are for general informational purposes only and should not be considered professional financial advice.</li>
|
|
<li><strong>No Guarantee of Accuracy:</strong> While we strive for accuracy, we make no warranty or guarantee about the correctness, completeness, or reliability of the results. You should always consult with a qualified professional for financial decisions.</li>
|
|
<li><strong>Limitation of Liability:</strong> We are not liable for any loss, damage, or inconvenience arising from the use of or reliance on the information provided by this calculator.</li>
|
|
</ul>
|
|
<a href="/" class="back-link">← Back to Calculator</a>
|
|
</div>
|
|
</body>
|
|
</html>
|