Complete reference for Formcertify HTML data attributes
data-fc-type
<input type="text" data-fc-type="name" />
<input type="tel" data-fc-type="phone" />
<input type="email" data-fc-type="email" />
<div data-fc-type="consent-disclosure"> By submitting this form, I agree to receive communications from... </div>
<input type="checkbox" data-fc-type="consent-opt-in" required />
<span data-fc-type="company-name"> ABC Mortgage </span>
<button type="submit" data-fc-type="submit">Submit</button>
<form data-fc-type="form"> <!-- Form fields here --> </form>
<form data-fc-type="form"> <div class="form-group"> <label for="name">Full Name</label> <input type="text" id="name" data-fc-type="name" required /> </div> <div class="form-group"> <label for="phone">Phone Number</label> <input type="tel" id="phone" data-fc-type="phone" required /> </div> <div class="form-group"> <label for="email">Email</label> <input type="email" id="email" data-fc-type="email" required /> </div> <div class="consent-box"> <div data-fc-type="company-name"> Acme Corporation </div> <div data-fc-type="consent-disclosure"> By submitting this form, I agree to receive marketing communications from <span data-fc-type="company-name">ABC Mortgage</span>. I understand that I can unsubscribe at any time. Message and data rates may apply. </div> <input type="checkbox" data-fc-type="consent-opt-in" required /> </div> <button type="submit" data-fc-type="submit"> Submit Form </button> </form>