Privacy Policy
Browse files
app.py
CHANGED
|
@@ -164,4 +164,35 @@ def delete_info():
|
|
| 164 |
<p>For assistance, contact us at support@mjproductions.com</p>
|
| 165 |
</body>
|
| 166 |
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
"""
|
|
|
|
| 164 |
<p>For assistance, contact us at support@mjproductions.com</p>
|
| 165 |
</body>
|
| 166 |
</html>
|
| 167 |
+
"""
|
| 168 |
+
|
| 169 |
+
|
| 170 |
+
@app.get("/privacy", response_class=HTMLResponse)
|
| 171 |
+
def privacy_policy():
|
| 172 |
+
return """
|
| 173 |
+
<html>
|
| 174 |
+
<head><title>FISCAL Privacy Policy</title></head>
|
| 175 |
+
<body style="font-family: sans-serif; max-width: 700px; margin: 50px auto; padding: 20px; line-height: 1.6;">
|
| 176 |
+
<h1>FISCAL Privacy Policy</h1>
|
| 177 |
+
<p><strong>Last updated: May 2026</strong></p>
|
| 178 |
+
|
| 179 |
+
<h2>Information We Collect</h2>
|
| 180 |
+
<p>We collect your email address and a hashed password to create and manage your account.</p>
|
| 181 |
+
|
| 182 |
+
<h2>Financial Data</h2>
|
| 183 |
+
<p>With your permission, FISCAL accesses your bank account data via Plaid to provide personalized financial advice. This data is processed ephemerally — it is never stored in our databases and is only used in the moment to generate your AI response.</p>
|
| 184 |
+
|
| 185 |
+
<h2>How We Use Your Data</h2>
|
| 186 |
+
<p>Your financial data is shared with our AI provider (Featherless AI) solely to generate your personalized financial responses. It is not stored, sold, or used for advertising.</p>
|
| 187 |
+
|
| 188 |
+
<h2>Data Storage</h2>
|
| 189 |
+
<p>We store only your email address and account credentials securely via Supabase. Chat messages and financial data are never stored.</p>
|
| 190 |
+
|
| 191 |
+
<h2>Data Deletion</h2>
|
| 192 |
+
<p>You can delete your account and all associated data at any time from within the FISCAL app under Options → Delete Account.</p>
|
| 193 |
+
|
| 194 |
+
<h2>Contact</h2>
|
| 195 |
+
<p>For privacy questions, contact us at mjproductions594@gmail.com</p>
|
| 196 |
+
</body>
|
| 197 |
+
</html>
|
| 198 |
"""
|