How to Add TCPA Label/Tags on Single Seller Lead Forms
  • 26 Aug 2025
  • 3 Minutes to read
  • Dark
    Light

How to Add TCPA Label/Tags on Single Seller Lead Forms

  • Dark
    Light

Article summary

Summary

The TCPA Disclosure label/tag should be placed around the disclosure text displayed on your forms. For Single Seller Lead forms, it is not necessary to include a separate label/tag specifically for the brand name. The only required label/tag is for the TCPA disclosure.

TCPA Disclosure Requirements for Single Seller Lead Forms:

  • Only one TCPA disclosure should appear on the lead form.

  • The TCPA disclosure text should be enclosed within a <label> tag.

  • The TCPA disclosure label text must include only one brand name.

  • The <input> or <select>tag associated with the TCPA disclosure should include one of the following identifying attributes:

    • Recommended

      • A data-leadid-type attribute set to "disclosure".

Implementation Options for Single Seller Lead forms:

PLEASE NOTE

By implementing the TCPA Disclosure tag/label, you are granting permission for Jornaya to provide a copy of the disclosure displayed on the form to companies that audit your LeadiD tokens.

No User Interaction Required

<label>
    <input type="hidden" data-leadid-type="disclosure"/>BY CLICKING "SUBMIT", I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL,
 TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>

    OR


<label for="leadid_tcpa_disclosure">
  BY CLICKING "SUBMIT", I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, TELEPHONE, AND/OR TEXT MESSAGES, 
  DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>

Checkbox

<label>
  <input type="checkbox" data-leadid-type="disclosure" />
  BY CHECKING THIS BOX, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
  TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>


OR

<input type="checkbox" id="leadid_tcpa_disclosure" />

<label for="leadid_tcpa_disclosure">
  BY CHECKING THIS BOX, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
  TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>


Radio Buttons

<label>
  <input type="radio" data-leadid-type="disclosure" />
  BY SELECTING THIS RADIO BUTTON, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
  TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>


OR

<input type="radio" id="leadid_tcpa_disclosure" />

<label for="leadid_tcpa_disclosure">
  BY SELECTING THIS RADIO BUTTON, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
  TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
</label>


Yes/No Menu

<label>
  BY SELECTING "YES" FROM THIS DROPDOWN MENU, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
  TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
  <select data-leadid-type="disclosure">
    <option value="yes">Yes</option>
    <option value="no">No</option>
  </select>
</label>


OR

<div class="tcpa-disclosure">
  <label for="leadid_tcpa_disclosure">
    BY SELECTING "YES" FROM THIS DROPDOWN MENU, I PROVIDE MY EXPRESS CONSENT AUTHORIZING [BRAND NAME] TO CONTACT ME BY EMAIL, 
    TELEPHONE, AND/OR TEXT MESSAGES, DELIVERED VIA AUTOMATED TECHNOLOGY TO THE PHONE NUMBER(S) THAT I HAVE PROVIDED ABOVE.
  </label>
  <select id="leadid_tcpa_disclosure">
    <option value="yes">Yes</option>
    <option value="no">No</option>
  </select>
</div>


Review your Script and TCPA Label Implementation

To review your implementation and confirm that the disclosure is being captured, please refer to this article.

Alternative Options for Implementation

While not the recommended approach, we can support alternative options for TCPA labeling by leveraging HTML attributes, provided they are implemented consistently across all pages. These include:

  • an id attribute containing "leadid_tcpa_disclosure" (with the important limitation that only one element in the document can share the same id)

  • a name attribute containing "leadid_tcpa_disclosure"

  • a class attribute that includes at least one class name containing "leadid_tcpa_disclosure".

Next step - Understanding Publisher Compliance

As a next step, you can check out our Publisher Compliance article for more information about how compliance is measured and the different data points/values that are returned to lead buyers through TCPA Guardian.


Was this article helpful?