# Privacy reassurance exists near data collection points

- **Pattern:** `ab-001751` (`marketing-conversion.trust-social-proof.privacy-guarantees`)
- **Severity:** low
- **Lifecycle:** active
- **Last modified:** 2026-04-18
- **Canonical URL:** https://auditbuffet.com/patterns/ab-001751
- **License:** CC-BY-4.0 — attribute to AuditBuffet Pattern Catalog (https://auditbuffet.com/patterns/ab-001751)

## Why it matters

Visitors hesitate to hand over an email address when they cannot see what happens next — they imagine spam, credit-card surprises, or a sales call. A single line of micro-copy next to the submit button ("No credit card required. Unsubscribe anytime.") answers that hesitation in place and measurably reduces form abandonment, whereas a privacy policy link buried in the footer does no work at the moment of decision.

## Severity rationale

Low because the form still functions but privacy-related hesitation quietly depresses completion rates.

## Remediation

Add a short privacy-reassurance line directly inside every data collection form, positioned within the same component as the submit button (not hidden in the footer). Edit the signup form component and append a muted-foreground paragraph beneath the submit button:

```tsx
<form>
  <Input type="email" placeholder="Work email" />
  <Button type="submit">Start Free Trial</Button>
  <p className="text-xs text-muted-foreground mt-1">
    No credit card required. Unsubscribe anytime.
  </p>
</form>
```

## Detection

- **ID:** `privacy-guarantees`
- **Severity:** `low`
- **What to look for:** Examine components that collect user data: email signup forms, trial signup forms, contact forms, and any form that collects an email address. Check whether there is a brief privacy note near the form — e.g., "We never spam. Unsubscribe anytime.", "No credit card required", "Your data is never shared", or a link to the privacy policy positioned near the form field. This is different from having a privacy policy link in the footer — the check is about micro-copy adjacent to the data entry point.
- **Pass criteria:** Count all data collection forms and check each for privacy micro-copy. At least 1 data collection form has privacy-reassurance micro-copy positioned near (within the same component as) the data entry fields, within 50px of the submit button. Report the count: "X of Y data forms include privacy micro-copy."
- **Fail criteria:** Data collection forms have no privacy micro-copy near the input fields. Privacy policy link exists only in the footer with no mention near the forms.
- **Skip (N/A) when:** No forms that collect user data are found in the marketing pages.
- **Detail on fail:** `"Email signup form in newsletter component collects email with no adjacent privacy note. Privacy policy link exists in footer only."`.
- **Remediation:** A single line near an email field reduces form abandonment meaningfully. Add micro-copy directly inside the form component:

  ```tsx
  <form>
    <Input type="email" placeholder="Work email" />
    <Button type="submit">Start Free Trial</Button>
    <p className="text-xs text-muted-foreground mt-1">
      No credit card required. Unsubscribe anytime.
    </p>
  </form>
  ```

---

Taxons: content-integrity

HTML version: https://auditbuffet.com/patterns/ab-001751
