JSFiddle - React, Tailwind, and code Playground

by mgrassotti

HTML

<h1>
LiftForward Form Autocomplete
</h1>
<p>
Drag this link to your browser toolbar. Once installed you can click it to autofill LiftForward loan application forms with dummy data
</p>

<a href="javascript:(function a() {  var now = Date.now();  var values = {    name: 'Mike Nichols ' + now,    workPhone: '123-456-7890',    businessName: 'LiftForward',    email: 'mike+' + now + '@liftforward.com',    password: 'test123',    purposeOfFunds: 'Business Remodel',    businessStructure: 'Corporation',    businessDescription: 'stuff',    addressLine1: '223 Prospect Ave',    city: 'Brooklyn',    state: 'New York',    postal: '11215',    phone: '123-456-7890',    taxId: '1231231',    firstName: 'mike', lastName: 'Nichols', numberOfEmployees: '10',    businessInceptionDate: '10/1999',    businessDeclaredBankruptcy: 'false',    businessSalesPriorYear: '125000',    businessSalesProjected: '220000',  businessUrl: 'www.business.com',  dateOfBirth: '5/1/1974',    borrowerSocialSecurityNumber: '123-33-1232',    borrowerMaritalStatus: 'Single',    borrowerHomeowner: 'true',    bankName: 'chase',    bankRoutingNumber: '021000021',    bankAccountNumber: '123123',    bankAccountHolderFullName: '1213123', number:'4111111111111111', expiry:'12/23', cvc:123 };  var inputs = $(':input');  for(var i = 0; i < inputs.length; i++) {    var input = inputs[i];    if(input.name && values[input.name]) {      input.value = values[input.name];    }  };  inputs.trigger('change');})()">LF Form Demo</a>