diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-26 17:03:16 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-26 17:03:16 +0000 |
commit | 04e490c0b0b65a21c531ac50a5ba321c79e14fa2 (patch) | |
tree | 428df0f34826b8aff22d9b37708ef286d3115015 /alphabetlearning/templates/pages/privacy_policy.html | |
parent | 78fd102b49f339af5432c2f0bebfab7ff9ac39bd (diff) |
Got the basic form anbd privacy policy in place
Diffstat (limited to 'alphabetlearning/templates/pages/privacy_policy.html')
-rw-r--r-- | alphabetlearning/templates/pages/privacy_policy.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/alphabetlearning/templates/pages/privacy_policy.html b/alphabetlearning/templates/pages/privacy_policy.html new file mode 100644 index 0000000..df8544d --- /dev/null +++ b/alphabetlearning/templates/pages/privacy_policy.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block content %} + <div class="container text-start"> + <h1 class="font-weight-bold my-4">Privacy and Data Policy</h1> + <p>Your privacy is important to us. This policy explains how we collect, use, and protect your information.</p> + <h3 class="font-weight-bold">Information We Collect</h3> + <p>We collect information that you provide to us directly, such as your email address when you sign up for our newsletter.</p> + <h3 class="font-weight-bold">How We Use Your Information</h3> + <p>Your information is used to send you updates about our services and promotions.</p> + <h3 class="font-weight-bold">Data Protection</h3> + <p>We take appropriate security measures to protect your personal information.</p> + <h3 class="font-weight-bold">Contact Us</h3> + <p>If you have any questions about this policy, please contact us.</p> + <p class="mt-4">Additionally, if you would like to have your email removed from our database, please email us at <a href="mailto:help@alphabetlearning.online">help@alphabetlearning.online</a> with your request.</p> + </div> +{% endblock content %}
\ No newline at end of file |