52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
// Simple header
|
|
function get_header() {
|
|
echo <<<HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Privacy Policy - Zone College Management System</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php">Zone CMS</a>
|
|
<a href="index.php" class="btn btn-outline-light">Back to Home</a>
|
|
</div>
|
|
</nav>
|
|
HTML;
|
|
}
|
|
|
|
// Simple footer
|
|
function get_footer() {
|
|
echo <<<HTML
|
|
<footer class="text-center py-4 bg-dark text-white mt-5">
|
|
<p>© 2025 Zone College Management System. All Rights Reserved.</p>
|
|
</footer>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|
|
HTML;
|
|
}
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<div class="container" style="padding-top: 100px;">
|
|
<div class="row">
|
|
<div class="col-md-8 offset-md-2">
|
|
<h1 class="mb-4">Privacy Policy</h1>
|
|
<p>This is a placeholder for the Privacy Policy page. Content will be added here.</p>
|
|
<p>Last updated: <?php echo date('Y-m-d'); ?>.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|
|
?>
|