29 lines
802 B
PHP
29 lines
802 B
PHP
<?php
|
|
http_response_code(501); // Not Implemented
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Privacy Policy</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container text-center">
|
|
<h1 class="display-4">Privacy Policy</h1>
|
|
<p class="lead">This page is under construction.</p>
|
|
<a href="/" class="btn btn-primary">Go to Homepage</a>
|
|
</div>
|
|
</body>
|
|
</html>
|