Spaces:
Sleeping
Sleeping
File size: 898 Bytes
21a8272 | 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 27 28 29 30 31 | {% extends "base.html" %}
{% block content %}
<div class="card">
<h2>Do Not Sell My Personal Information</h2>
<p class="subtitle">CCPA / CPRA Notice</p>
<p>
This application does not sell your personal information.
We do not share your data with third parties for advertising,
profiling, or cross-context behavioral advertising.
</p>
<p>
The data we collect is used solely for:
</p>
<ul>
<li>Providing the tone classification service</li>
<li>Securing accounts and preventing abuse</li>
<li>Improving the accuracy and reliability of the tool</li>
</ul>
<p>
You can delete your account and all associated data at any time
from the "Delete Account" page. You may also export your data via
the History export features.
</p>
</div>
{% endblock %}
|