18 lines
991 B
HTML
18 lines
991 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Privacy Policy | Digital Bookstore{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container py-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<h1 class="mb-4">Privacy Policy</h1>
|
|
<p class="lead">At BookStore, we value your privacy. We collect minimal information such as your name and email when you register or purchase a book to process your order.</p>
|
|
<h3 class="mt-5">Cookies & Ads</h3>
|
|
<p>We use Google AdSense to show ads. Third-party vendors, including Google, use cookies to serve ads based on your prior visits to our website. You can opt-out of personalized advertising by visiting Google Ads Settings.</p>
|
|
<h3 class="mt-5">Data Protection</h3>
|
|
<p>We do not sell or share your personal data with third parties. All local payment transactions are processed through secure gateways.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|