37684-vm/terms.php
2026-03-01 00:04:22 +00:00

71 lines
3.6 KiB
PHP

<?php
$project_name = $_SERVER['PROJECT_NAME'] ?? 'LPA Online';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms & Conditions — <?php echo htmlspecialchars($project_name); ?></title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg bg-white border-bottom">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="/">
<img src="assets/pasted-20260228-235417-eedda424.png" alt="<?php echo htmlspecialchars($project_name); ?>" height="40">
</a>
</div>
</nav>
<main class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="card shadow-sm border-0 p-4 p-md-5">
<h1 class="h2 fw-bold mb-4">Terms & Conditions</h1>
<p class="text-muted small mb-4">Last updated: <?php echo date('F j, Y'); ?></p>
<div class="content text-secondary">
<section class="mb-4">
<h2 class="h5 fw-bold text-dark">1. Introduction</h2>
<p>Welcome to <?php echo htmlspecialchars($project_name); ?>. These Terms & Conditions govern your use of our website and services. By accessing or using our platform, you agree to be bound by these terms.</p>
</section>
<section class="mb-4">
<h2 class="h5 fw-bold text-dark">2. Use of Service</h2>
<p>Our service provides a digital questionnaire to assist in the creation of Lasting Power of Attorney (LPA) documents. We are not a law firm and do not provide legal advice.</p>
</section>
<section class="mb-4">
<h2 class="h5 fw-bold text-dark">3. User Responsibilities</h2>
<p>You are responsible for ensuring the accuracy of the information provided in the questionnaire. Any documents generated should be reviewed by a qualified professional.</p>
</section>
<section class="mb-4">
<h2 class="h5 fw-bold text-dark">4. Privacy</h2>
<p>Your privacy is important to us. Please refer to our Privacy Policy for information on how we collect and use your data.</p>
</section>
<section>
<h2 class="h5 fw-bold text-dark">5. Limitation of Liability</h2>
<p><?php echo htmlspecialchars($project_name); ?> shall not be liable for any direct, indirect, incidental, or consequential damages resulting from the use or inability to use our services.</p>
</section>
</div>
<div class="mt-5 border-top pt-4">
<a href="javascript:history.back()" class="btn btn-outline-primary px-4">Go Back</a>
</div>
</div>
</div>
</div>
</main>
<footer class="py-5 text-center text-muted">
<div class="container">
<p class="small">&copy; <?php echo date('Y'); ?> <?php echo htmlspecialchars($project_name); ?>. All rights reserved.</p>
</div>
</footer>
</body>
</html>