-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
32 lines (28 loc) · 1.48 KB
/
Copy pathprivacy.html
File metadata and controls
32 lines (28 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - EventSnap</title>
<style>
body { font-family: sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 2rem; }
h1 { color: #1E1E1E; }
h2 { color: #4285F4; margin-top: 2rem; }
p { margin-bottom: 1rem; }
ul { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }
</style>
</head>
<body>
<h1>Privacy Policy for EventSnap</h1>
<p>This application is designed with privacy and security in mind. Please review how your data is handled below:</p>
<h2>No Data Storage</h2>
<p>The App does not store any data. The events are stored directly in YOUR Google calendar. Login is handled securely by Google Login (OAuth).</p>
<h2>Public LLM Processing</h2>
<p>The event URLs or Text you submit will be interpreted by a public LLM, in this case OpenAI. Do not submit highly sensitive personal text.</p>
<h2>Dedicated Calendar</h2>
<p>A new calendar named <strong>"Events to Decide"</strong> will be created and used to add events. Your main Calendar remains completely untouched. You can even use a different Google account if you want.</p>
<h2>Full Control</h2>
<p>You can revoke the permissions from your Google account anytime for EventSnap via your Google Account settings.</p>
</body>
</html>