57 lines
1.8 KiB
HTML
57 lines
1.8 KiB
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</title>
|
|
<link rel="stylesheet" href="<?= base_url('styles.css') ?>" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img
|
|
src="<?= base_url('/images/logo.png') ?>"
|
|
alt="School Logo"
|
|
class="logo"
|
|
/>
|
|
</header>
|
|
<main>
|
|
<div class="container">
|
|
<h1>Privacy Policy</h1>
|
|
<p>
|
|
Welcome to the Privacy Policy page. Here, we describe how we handle
|
|
and protect your personal data.
|
|
</p>
|
|
<p>
|
|
You can view our complete Privacy Policy by clicking
|
|
<a href="<?= base_url('public/privacy_policy.pdf') ?>" target="_blank"
|
|
>here</a
|
|
>.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
<footer class="footer mt-auto">
|
|
<div class="row">
|
|
<div class="col-md-4 contact-info">
|
|
<p>5 Courthouse Lane, Chelmsford, MA 01824</p>
|
|
<p>alrahma.isgl@gmail.com</p>
|
|
<p>+1 978-364-0219</p>
|
|
</div>
|
|
<div class="col-md-4 social-media">
|
|
<a href="#"><img src="path_to_facebook_icon.png" alt="Facebook" /></a>
|
|
<a href="#"><img src="path_to_twitter_icon.png" alt="Twitter" /></a>
|
|
<a href="#"
|
|
><img src="path_to_instagram_icon.png" alt="Instagram"
|
|
/></a>
|
|
</div>
|
|
<div class="col-md-4 quick-access">
|
|
<a href="<?= base_url('public/privacy_policy.pdf') ?>" target="_blank"
|
|
>Privacy Policy</a
|
|
>
|
|
<a href="<?= base_url('/terms-of-service'); ?>">Terms of Service</a>
|
|
<a href="<?= base_url('/help-center'); ?>">Help Center</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|