Files
MiniFaceBook/templates/privacy_policy.html
2025-09-27 20:49:58 +02:00

16 lines
1.6 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ _('Privacy Policy') }}{% endblock %}
{% block content %}
<h1>{{ _('Privacy Policy') }}</h1>
<p>{{ _('Your privacy is important to us. This privacy policy explains how we collect, use, and protect your information when you use our application.') }}</p>
<p>{{ _('We collect personal information that you provide to us, such as your name, email address, and any other information you choose to share.') }}</p>
<p>{{ _('We use this information to provide and improve our services, communicate with you, and personalize your experience.') }}</p>
<p>{{ _('We do not share your personal information with third parties without your consent, except as required by law or to protect our rights.') }}</p>
<p>{{ _('We implement security measures to protect your information from unauthorized access, alteration, disclosure, or destruction.') }}</p>
<p>{{ _('You have the right to access, correct, or delete your personal information at any time. Please contact us if you wish to exercise these rights.') }}</p>
<p>{{ _('We may update this privacy policy from time to time. We will notify you of any changes by posting the new privacy policy on this page.') }}</p>
<p>{{ _('By using our application, you agree to the terms of this privacy policy. If you do not agree, please do not use our application.') }}</p>
<p>{{ _('If you have any questions or concerns about this privacy policy, please contact us.') }}</p>
<a href="https://github.com/Michatec/MiniFaceBook" target="_blank">{{ _('GitHub Repository') }}</a>
<p>{{ _('Thank you for using our application!') }}</p>
{% endblock %}