Tutorials

A Practical Guide to tracking without cookies

Flowsery Team
Flowsery Team
4 min read

TL;DR — Quick Answer

4 min read

Form tracking should count submissions and outcomes without collecting field values. Use privacy-safe events, server-side confirmation, and aggregate conversion reports instead of cookies or session recordings.

This guide explains tracking without cookies in practical terms, with a focus on privacy-first analytics decisions.

Form submissions are one of the most important website conversions, and one of the easiest places to leak personal data. Names, emails, phone numbers, messages, health details, budgets, and company information often pass through forms. Your analytics tool usually does not need any of that.

Tracking without cookies means measuring that a form was submitted, which form it was, and which campaign or page contributed, without storing a persistent visitor identifier or sending field values to analytics vendors.

What You Actually Need to Measure

For most marketing forms, the useful analytics questions are:

  • How many visitors viewed the form page?
  • How many started the form?
  • How many submitted it successfully?
  • Which source, campaign, or landing page led to submissions?
  • Which device or browser has a lower completion rate?
  • Which form type converts best?

None of those questions require collecting the message body, email address, name, or phone number in analytics.

Safe Event Design

Use events like:

Event: form_viewed
Properties:
- form_type = demo
- page_template = pricing
 
Event: form_started
Properties:
- form_type = demo
 
Event: form_submitted
Properties:
- form_type = demo
- result = success

For failed submissions, track the error category, not the exact field value:

Event: form_error
Properties:
- form_type = demo
- error_type = validation_required_field

Do not send:

  • Name.
  • Email.
  • Phone.
  • Company.
  • Message text.
  • Free-text search or form input.
  • Internal CRM ID.
  • IP address.
  • Health, finance, or legal details.

Google warns Analytics customers not to send personally identifiable information or sensitive information into Analytics in its HIPAA and Google Analytics guidance. That rule is useful even if you use a different analytics platform.

Client-Side vs Server-Side Confirmation

A client-side click event can overcount because people click submit even when validation fails. A better conversion signal is server-side confirmation: the backend receives the form, validates it, stores or sends it to the correct system, and then records form_submitted only after success.

If server-side event tracking is not available, use the thank-you page as a conversion signal. It is less precise than backend confirmation, but better than counting button clicks.

What About Google Tag Manager?

Google Tag Manager can detect form submissions, but it can also make mistakes:

  • It may fire before validation succeeds.
  • It may capture field values if configured poorly.
  • It may send events to multiple vendors.
  • It may fire tags before consent.
  • It may be forgotten when forms change.

If you use GTM, keep the data layer clean. Push only safe fields such as form_type, form_id as a non-identifying slug, and result. Never push the form payload into the data layer.

Cookies Are Not Required for Basic Form Conversion Tracking

A cookieless analytics setup can count conversions by page, referrer, UTM campaign, and aggregate context. You may not know that the same browser visited three times before submitting, but you can still answer the operational question: which sources and pages produce form submissions?

If you need lead-level attribution, connect it inside your CRM with explicit collection and proper notices. Do not smuggle lead identity through website analytics.

Flowsery
Flowsery

Start Free Trial

Real-time dashboard

Goal tracking

Cookie-free tracking

Under GDPR, form contents are personal data when they identify or relate to a person. Depending on the form, they may also include special category data. Under the CCPA, form data may be personal information and, in some cases, sensitive personal information. Under HIPAA, healthcare forms can involve PHI when used by regulated entities.

The safest analytics design is data minimization: count the event, keep the payload in the system that needs it, and avoid third-party analytics disclosure.

Implementation Checklist

  1. Inventory all forms and their destinations.
  2. Define form_type values: demo, contact, newsletter, support, quote.
  3. Decide which event marks success.
  4. Remove field values from analytics events and data layer pushes.
  5. Strip personal query parameters from thank-you page URLs.
  6. Test rejection of analytics consent where applicable.
  7. Verify no session replay or heatmap tool records typed input.
  8. Compare analytics conversion counts with backend form records.
  9. Document the flow in your privacy notice.

Common Mistakes

  • Counting submit button clicks as conversions.
  • Sending email addresses as event labels.
  • Recording failed submissions as leads.
  • Installing session replay on form pages.
  • Putting form answers in URL parameters.
  • Letting multiple ad pixels fire on sensitive forms.
  • Keeping form logs forever.

Form analytics should make the funnel better without making visitors more exposed. Count the conversion. Protect the content.

Server Logs Are Not Automatically Safer

Some teams remove client-side analytics and then keep detailed server logs forever. That can still create privacy risk. Server logs may contain IP addresses, user agents, full URLs, query strings, and timestamps. If you use logs for form conversion validation, minimize fields, restrict access, and set retention.

Reconcile With Business Systems

Analytics should not be the source of truth for leads. Compare aggregate form_submitted counts with CRM or inbox records weekly. If analytics says 120 submissions and the CRM has 83, investigate spam filtering, validation failures, duplicate submissions, blocked scripts, and backend errors. Privacy-safe tracking still needs operational QA.

The guiding rule is separation. Analytics counts the event. CRM or support handles the content. Security logs protect the system. Mixing those jobs creates unnecessary exposure.

That separation also makes audits easier because each system has a clear purpose and a smaller set of data.

Form Tracking QA Checklist

Test each form from the visitor's point of view and the backend's point of view. Confirm that analytics counts only successful submissions, never stores field values, strips personal query parameters, and stays off when applicable consent is refused.

Then reconcile weekly with the system that actually receives the lead. If analytics and CRM disagree, investigate validation failures, spam filtering, duplicate submissions, blocked scripts, and backend errors before changing campaign spend.

Was this article helpful?

Let us know what you think!

Before you go...

Flowsery

Flowsery

Revenue-first analytics for your website

Track every visitor, source, and conversion in real time. Simple, powerful, and fully GDPR compliant.

Real-time dashboard

Goal tracking

Cookie-free tracking

Related Articles