Generator

CCPA Opt-Out Page Generator

Build a "Do Not Sell My Personal Information" page required by CCPA for California residents.

Opt-out page HTML
<!DOCTYPE html>
<html>
<head><title>Do Not Sell My Personal Information — Your Company</title></head>
<body style="max-width:680px;margin:60px auto;padding:0 20px;font-family:system-ui,sans-serif;line-height:1.6;color:#1f2937;">
  <h1>Do Not Sell My Personal Information</h1>
  <p>Under the California Consumer Privacy Act (CCPA), California residents have the right to opt-out of the sale of their personal information.</p>
  <p>Your Company does not sell personal information in the traditional sense, but the CCPA defines "sale" broadly to include sharing data for advertising purposes.</p>
  <h2>Opt out</h2>
  <form action="/api/ccpa-opt-out" method="POST">
    <p><label>Email <input name="email" type="email" required /></label></p>
    <p><label><input type="checkbox" name="confirm" required /> I am a California resident and request opt-out</label></p>
    <button type="submit" style="background:#2563eb;color:#fff;border:none;padding:10px 20px;border-radius:6px;cursor:pointer;">Submit opt-out</button>
  </form>
  <p>Or email us at <a href="mailto:privacy@example.com">privacy@example.com</a>.</p>
</body>
</html>