-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegal.html
More file actions
84 lines (81 loc) · 4.28 KB
/
legal.html
File metadata and controls
84 lines (81 loc) · 4.28 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CAPB Legal</title>
<link rel="stylesheet" href="functions/styles.css">
</head>
<body>
<div class="app-shell">
<header class="hero">
<div>
<p class="hero__eyebrow">LEGAL & PRIVACY</p>
<h1>CAPTCHA Both Legal Details</h1>
<p class="hero__subhead">
One page, two sections: the Terms of Conditions and the Privacy Policy live together so you can read both without switching tabs. They describe how reCAPTCHA, Cloudflare, and CAPB relate to one another.
</p>
</div>
<div class="hero__cta">
<a class="main-page-btn" href="index.html">Main Page</a>
</div>
</header>
<main class="legal-content">
<section id="terms">
<h2>Terms of Conditions</h2>
<p>
This site orchestrates Google reCAPTCHA v3 and Cloudflare Turnstile in a single experience. When you click “Verify Human Identity,” the widgets evaluate your session and return tokens. Our worker posts those tokens back to Google and Cloudflare, checks `success` flags, and reports status without storing raw tokens longer than needed.
</p>
<p>
We match the verbiage that the vendors expect: please review <a href="https://cloud.google.com/terms" target="_blank" rel="noreferrer noopener">Google’s terms</a> and <a href="https://www.cloudflare.com/terms/" target="_blank" rel="noreferrer noopener">Cloudflare’s terms</a>. CAPB simply adds a thin UI layer plus the worker that orchestrates both services.
</p>
<p>
Things we do not do:
</p>
<ul>
<li>We do not repurpose your token data for advertising or analytics beyond the original vendors.</li>
<li>We do not store personal data outside the minimal logs needed for debugging.</li>
<li>We do not inject trackers or fingerprinting code—only the approved widget scripts run.</li>
<li>We do not modify Google or Cloudflare’s scoring or policy decisions.</li>
<li>We do not share access keys or secrets with third parties.</li>
</ul>
<p>
This translates into a simple compliance story: CAPB is a portfolio work that demonstrates worker orchestration, documentation, and policy handling within Cloudflare Pages.
</p>
</section>
<section id="privacy">
<h2>Privacy Policy</h2>
<p>
Visiting `capb.pages.dev` fires only the official widget scripts and the Cloudflare Worker. The only cookies present are the ones set by reCAPTCHA and Turnstile. We do not add analytics cookies, marketing pixels, or tracking beacons.
</p>
<p>
We do not build user profiles; we do not collect emails, phone numbers, or financial details; we do not keep your browsing history beyond the request headers your browser already sends.
</p>
<p>
The visitor data flow is: browser → Google & Cloudflare → worker → you see success/failure. Nothing else ingests that stream. The tokens expire quickly and cannot be replayed.
</p>
<p>
Want more detail? Read the vendor policies:
</p>
<div class="legal-actions">
<a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer noopener">Google Privacy</a>
<a href="https://www.cloudflare.com/security-and-compliance/privacy/" target="_blank" rel="noreferrer noopener">Cloudflare Privacy</a>
<a href="https://cloud.google.com/terms" target="_blank" rel="noreferrer noopener">reCAPTCHA Terms</a>
<a href="https://www.cloudflare.com/terms/" target="_blank" rel="noreferrer noopener">Cloudflare Terms</a>
</div>
<p>
If you have questions, file a “CAPB Privacy Request” ticket through Cloudflare Pages support and we’ll examine the limited logs we keep.
</p>
</section>
</main>
<footer class="footer">
<span>Made By Aarham</span>
<span>CAPTCHA Both</span>
<span><strong>Copyright 2026 ©</strong></span>
<a href="index.html">Main Page</a>
<a href="legal.html#terms">Terms</a>
<a href="legal.html#privacy">Privacy</a>
</footer>
</div>
</body>
</html>