37684-vm/terms.php
2026-02-28 23:54:18 +00:00

72 lines
4.0 KiB
PHP

<?php
$project_name = $_SERVER['PROJECT_NAME'] ?? 'LPA Builder';
?>
<!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="/">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="me-2"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
<span class="fw-bold"><?php echo htmlspecialchars($project_name); ?></span>
</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>