Files
whatshooked/pkg/handlers/static/privacy-policy.html
Hein 71f26c214f
Some checks failed
CI / Test (1.22) (push) Failing after -24m33s
CI / Test (1.23) (push) Failing after -24m32s
CI / Build (push) Successful in -26m46s
CI / Lint (push) Successful in -26m38s
feat(static): Add terms of service page and update routes
* Implement ServeTermsOfService handler to serve the terms of service page.
* Update index.html and privacy-policy.html to include links to the terms of service.
* Add logo1024.png for branding.
2026-02-04 19:41:11 +02:00

185 lines
5.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - WhatsHooked</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
color: #333;
}
.container {
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 800px;
width: 100%;
padding: 60px 40px;
}
.header {
text-align: center;
margin-bottom: 40px;
}
.header h1 {
font-size: 2.4em;
margin-bottom: 10px;
}
.header h1 .whats {
color: #1e88e5;
}
.header h1 .hooked {
color: #1a237e;
}
.header p {
color: #666;
font-size: 1.1em;
}
.policy-section {
margin-bottom: 30px;
}
.policy-section h2 {
color: #1a237e;
font-size: 1.3em;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 2px solid #e8eaf6;
}
.policy-section p {
color: #555;
line-height: 1.7;
margin-bottom: 12px;
}
.policy-section ul {
color: #555;
line-height: 1.9;
padding-left: 20px;
}
.highlight-box {
background: #e8f5e9;
border: 2px solid #4caf50;
border-radius: 10px;
padding: 20px 24px;
margin-bottom: 30px;
}
.highlight-box p {
color: #2e7d32;
font-weight: 600;
font-size: 1.05em;
line-height: 1.6;
margin: 0;
}
.highlight-box p + p {
margin-top: 8px;
}
.footer {
margin-top: 40px;
padding-top: 24px;
border-top: 2px solid #eee;
text-align: center;
color: #999;
font-size: 0.9em;
}
.footer a {
color: #1e88e5;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.container {
padding: 40px 20px;
}
.header h1 {
font-size: 1.8em;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1><span class="whats">Whats</span><span class="hooked">Hooked</span></h1>
<p>Privacy Policy</p>
</div>
<div class="highlight-box">
<p>No customer data is collected, stored, or saved by WhatsHooked. Messages are forwarded in real time and are not retained on our servers.</p>
<p>Our use of the Meta API is limited exclusively to WhatsApp Business messaging.</p>
</div>
<div class="policy-section">
<h2>What We Do Not Collect</h2>
<p>WhatsHooked does not save, log, or persist any customer data. This includes, but is not limited to:</p>
<ul>
<li>Message content exchanged via WhatsApp</li>
<li>Contact information or phone numbers of end users</li>
<li>Media files, locations, or any other payload sent through the platform</li>
<li>Browsing history, cookies, or device identifiers</li>
</ul>
</div>
<div class="policy-section">
<h2>How WhatsApp Messages Are Handled</h2>
<p>WhatsHooked acts as a bridge between WhatsApp and your configured webhook endpoints. Incoming messages are received and forwarded to your endpoints in real time. No message content is stored or cached beyond what is necessary for the immediate delivery.</p>
</div>
<div class="policy-section">
<h2>Use of the Meta API</h2>
<p>WhatsHooked integrates with the Meta (WhatsApp Business) API solely for the purpose of sending and receiving WhatsApp Business messages. The API access is not used for any other purpose, including but not limited to:</p>
<ul>
<li>Advertising or marketing outside of your own business messaging</li>
<li>Data collection or analytics on end users</li>
<li>Any use beyond WhatsApp Business messaging as permitted by Meta's terms of service</li>
</ul>
</div>
<div class="policy-section">
<h2>Your Responsibilities</h2>
<p>As the operator of a WhatsHooked instance, you are responsible for ensuring that your use of the platform complies with applicable privacy laws and Meta's terms of service. WhatsHooked provides the infrastructure; the data handling obligations rest with you as the account owner.</p>
</div>
<div class="policy-section">
<h2>Changes to This Policy</h2>
<p>This privacy policy may be updated at any time. Changes will be reflected on this page. Continued use of WhatsHooked after an update constitutes acceptance of the revised policy.</p>
</div>
<div class="footer">
<p><a href="/">Back to WhatsHooked</a> &middot; <a href="/terms-of-service">Terms of Service</a></p>
<p style="margin-top: 10px;">Made by Warky Devs</p>
</div>
</div>
</body>
</html>