blob: 06d12a54c2ae78d2db1700682bda732b459c32bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "base.html" %}
{% block content %}
<div class="container text-center">
<h1 class="font-weight-bold my-4">Privacy and Data Policy</h1>
<div class="bg-light p-4 mb-4 rounded">
<h3 class="font-weight-bold">Information We Collect and How We Use It</h3>
<p>We collect your email address so that that we can inform you about the launch of our site and register your interest
to receive a discount on your first purchases.</p>
</div>
<div class="bg-light p-4 mb-4 rounded">
<h3 class="font-weight-bold">Data Protection</h3>
<p>We take appropriate security measures to protect your personal information. <strong>We will not share your email address with any
third parties.</strong></p>
</div>
<div class="bg-light p-4 mb-4 rounded">
<h3 class="font-weight-bold">Contact Us</h3>
<p>If you have any questions about this policy or would like us to remove your email address from our database,
please email us at <a href="mailto:help@alphabetlearning.online">help@alphabetlearning.online</a>.</p>
</div>
</div>
{% endblock content %}
|