File size: 3,251 Bytes
ea27a37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{% extends "base.html" %}

{% block title %}Privacy Policy - SkinAI{% endblock %}

{% block content %}
<section class="page-header">
    <div class="container">
        <h1>Privacy Policy</h1>
        <p>Last updated: January 1, 2023</p>
    </div>
</section>

<section class="privacy-content">
    <div class="container">
        <div class="content-card">
            <h2>1. Introduction</h2>
            <p>At SkinAI, we take your privacy seriously. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our service.</p>

            <h2>2. Information We Collect</h2>
            <p>We collect the following types of information:</p>
            <ul>
                <li><strong>Images:</strong> Skin lesion images that you upload for analysis</li>
                <li><strong>Usage Data:</strong> Information about how you interact with our service</li>
                <li><strong>Device Information:</strong> Browser type, IP address, and device type</li>
            </ul>

            <h2>3. How We Use Your Information</h2>
            <p>We use the collected information for the following purposes:</p>
            <ul>
                <li>To provide and maintain our service</li>
                <li>To process and analyze uploaded images</li>
                <li>To improve our AI models and service</li>
                <li>To respond to your inquiries and provide support</li>
            </ul>

            <h2>4. Data Storage and Security</h2>
            <p>We do not permanently store the images you upload for analysis. All processing is done in real-time, and images are not saved after analysis is complete. We implement appropriate security measures to protect your information.</p>

            <h2>5. Data Sharing</h2>
            <p>We do not sell, trade, or otherwise transfer your information to third parties. We may share anonymized, aggregated data for research or educational purposes.</p>

            <h2>6. Cookies and Tracking</h2>
            <p>We use cookies and similar tracking technologies to enhance your experience on our website. You can set your browser to refuse cookies, but this may limit some functionality.</p>

            <h2>7. Your Rights</h2>
            <p>Depending on your location, you may have rights regarding your personal information, including:</p>
            <ul>
                <li>The right to access information we have about you</li>
                <li>The right to request deletion of your data</li>
                <li>The right to object to processing of your data</li>
            </ul>

            <h2>8. Children's Privacy</h2>
            <p>Our service is not intended for individuals under the age of 18. We do not knowingly collect personal information from children.</p>

            <h2>9. Changes to This Policy</h2>
            <p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page and updating the "Last Updated" date.</p>

            <h2>10. Contact Us</h2>
            <p>If you have questions about this Privacy Policy, please <a href="{{ url_for('contact') }}">contact us</a>.</p>
        </div>
    </div>
</section>
{% endblock %}