bhl-forms 0.8.6 → 0.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/forms/accidentsAndInjuries.es.js +2 -2
- package/dist/forms/accidentsAndInjuries.iife.js +1 -1
- package/dist/forms/civilLawsuit.es.js +2 -2
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/criminal.es.js +2 -2
- package/dist/forms/criminal.iife.js +1 -1
- package/dist/forms/employmentAndWorkplace.es.js +2 -2
- package/dist/forms/employmentAndWorkplace.iife.js +1 -1
- package/dist/forms/generalLegal.es.js +2 -2
- package/dist/forms/generalLegal.iife.js +1 -1
- package/dist/forms/generalLegalJustAnswer.es.js +2 -2
- package/dist/forms/generalLegalJustAnswer.iife.js +1 -1
- package/dist/forms/generalLegalPopUnder.es.js +2 -2
- package/dist/forms/generalLegalPopUnder.iife.js +1 -1
- package/dist/forms/generalLegalPopUnderSingle.es.js +2 -2
- package/dist/forms/generalLegalPopUnderSingle.iife.js +1 -1
- package/dist/forms/generalLegalSingle.es.js +2 -2
- package/dist/forms/generalLegalSingle.iife.js +1 -1
- package/dist/forms/generalLegalThankYou.es.js +2 -2
- package/dist/forms/generalLegalThankYou.iife.js +1 -1
- package/dist/forms/generalLegalThankYouConsultation.es.js +2 -2
- package/dist/forms/generalLegalThankYouConsultation.iife.js +1 -1
- package/dist/forms/malpractice.es.js +60 -35
- package/dist/forms/malpractice.iife.js +1 -1
- package/dist/forms/patentsAndIP.es.js +2 -2
- package/dist/forms/realEstate.es.js +2 -2
- package/dist/forms/realEstate.iife.js +1 -1
- package/dist/forms/repossession.es.js +2 -2
- package/dist/forms/repossession.iife.js +1 -1
- package/package.json +1 -1
|
@@ -173,15 +173,6 @@ const radio = (updates) => {
|
|
|
173
173
|
)
|
|
174
174
|
};
|
|
175
175
|
|
|
176
|
-
const col2Radio = (updates) => {
|
|
177
|
-
updates.legendClass = "required";
|
|
178
|
-
updates.fieldsetClass = "$reset";
|
|
179
|
-
updates.optionsClass = "t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2";
|
|
180
|
-
updates.innerClass = "t-items-start";
|
|
181
|
-
updates.wrapperClass = "$reset t-flex t-cursor-pointer t-mb-3";
|
|
182
|
-
return radio(updates)
|
|
183
|
-
};
|
|
184
|
-
|
|
185
176
|
// TODO: rename
|
|
186
177
|
const col2RadioCenter = (updates) => {
|
|
187
178
|
updates.legendClass = "required t-w-[100%] t-text-center";
|
|
@@ -197,6 +188,15 @@ const col2RadioCenter = (updates) => {
|
|
|
197
188
|
return radio(updates)
|
|
198
189
|
};
|
|
199
190
|
|
|
191
|
+
const sbsRadio = (updates) => {
|
|
192
|
+
updates.legendClass = "legend-left required";
|
|
193
|
+
updates.fieldsetClass = "$reset side-by-side";
|
|
194
|
+
updates.optionsClass = "t-pl-1";
|
|
195
|
+
updates.innerClass = "t-flex t-items-center";
|
|
196
|
+
updates.wrapperClass = "t-mb-3";
|
|
197
|
+
return radio(updates)
|
|
198
|
+
};
|
|
199
|
+
|
|
200
200
|
const sbs2ColRadio = (updates) => {
|
|
201
201
|
updates.legendClass = "legend-left-flex md:t-max-w-[40%] required";
|
|
202
202
|
updates.fieldsetClass = "$reset side-by-side-flex";
|
|
@@ -844,8 +844,8 @@ const medicalMalpracticeInjuries = (scope, vertical, updates = {}) => {
|
|
|
844
844
|
};
|
|
845
845
|
|
|
846
846
|
const malpracticeTOLPDisplay = (scope, vertical, updates = {}) => {
|
|
847
|
-
const func = vertical ? col2RadioCenter :
|
|
848
|
-
const label = vertical ? updates.label : "Select
|
|
847
|
+
const func = vertical ? col2RadioCenter : sbsRadio;
|
|
848
|
+
const label = vertical ? updates.label : "Select the issue:";
|
|
849
849
|
return func(
|
|
850
850
|
merge(
|
|
851
851
|
{
|
|
@@ -1073,9 +1073,9 @@ const ChildCustodyQuestions = (condition, scope) =>
|
|
|
1073
1073
|
],
|
|
1074
1074
|
});
|
|
1075
1075
|
|
|
1076
|
-
const
|
|
1077
|
-
group("
|
|
1078
|
-
if: condition || '$get(Type_Of_Legal_Problem).value == "
|
|
1076
|
+
const FileLawsuitQuestions = (condition, scope) =>
|
|
1077
|
+
group("FileLawsuitQuestions", {
|
|
1078
|
+
if: condition || '$get(Type_Of_Legal_Problem).value == "File a Lawsuit"',
|
|
1079
1079
|
children: [haveAttorney(scope), lawsuitOtherParty(scope), degreeOfInterestHelp(scope)],
|
|
1080
1080
|
});
|
|
1081
1081
|
|
|
@@ -1273,6 +1273,19 @@ function crossSellQuestionsStepSubHeadline(updates) {
|
|
|
1273
1273
|
}
|
|
1274
1274
|
}
|
|
1275
1275
|
|
|
1276
|
+
function verticalStepSubHeadline(updates) {
|
|
1277
|
+
return {
|
|
1278
|
+
$el: "h5",
|
|
1279
|
+
children: updates.subheadline || "",
|
|
1280
|
+
attrs: {
|
|
1281
|
+
class:
|
|
1282
|
+
"t-flex t-justify-center t-text-center !t-text-lg t-font-normal t-text-dark t-pb-5 t-pt-0 t-px-1" +
|
|
1283
|
+
" " +
|
|
1284
|
+
(updates.subheadlineClass || ""),
|
|
1285
|
+
},
|
|
1286
|
+
}
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1276
1289
|
function commentsStepHeadline(updates) {
|
|
1277
1290
|
return {
|
|
1278
1291
|
$el: "h3",
|
|
@@ -1431,10 +1444,21 @@ function contactInfo(updates = {}) {
|
|
|
1431
1444
|
)
|
|
1432
1445
|
}
|
|
1433
1446
|
|
|
1434
|
-
function
|
|
1447
|
+
function firstAndLastV3(updates = {}) {
|
|
1435
1448
|
return step(
|
|
1436
1449
|
"firstAndLast",
|
|
1437
|
-
[
|
|
1450
|
+
[
|
|
1451
|
+
firstAndLastStepHeadline({
|
|
1452
|
+
headline: updates.headline ?? "Who is looking for help?",
|
|
1453
|
+
headlineClass: updates.headlineClass,
|
|
1454
|
+
}),
|
|
1455
|
+
verticalStepSubHeadline({
|
|
1456
|
+
subheadline: updates.subheadline ?? "Note: we never share info without consent",
|
|
1457
|
+
subheadlineClass: "!t-text-sm !t-text-gray-500",
|
|
1458
|
+
}),
|
|
1459
|
+
firstName(updates.scope),
|
|
1460
|
+
lastName(updates.scope),
|
|
1461
|
+
],
|
|
1438
1462
|
updates
|
|
1439
1463
|
)
|
|
1440
1464
|
}
|
|
@@ -1462,7 +1486,7 @@ function malpracticeTOLPQuestions(updates = {}) {
|
|
|
1462
1486
|
[
|
|
1463
1487
|
questionsStepHeadline(updates),
|
|
1464
1488
|
MedicalMalpracticeQuestions(),
|
|
1465
|
-
|
|
1489
|
+
FileLawsuitQuestions(),
|
|
1466
1490
|
NotSureOrOtherQuestions(),
|
|
1467
1491
|
],
|
|
1468
1492
|
updates
|
|
@@ -2148,10 +2172,10 @@ const legalAllValueOverrideMap = {
|
|
|
2148
2172
|
},
|
|
2149
2173
|
// Malpractice
|
|
2150
2174
|
"Attorney Malpractice": {
|
|
2151
|
-
Type_Of_Legal_Problem: "
|
|
2175
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
2152
2176
|
},
|
|
2153
2177
|
"Other Malpractice Issues": {
|
|
2154
|
-
Type_Of_Legal_Problem: "
|
|
2178
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
2155
2179
|
},
|
|
2156
2180
|
// Repossession
|
|
2157
2181
|
"Vehicle Repossession": {
|
|
@@ -2375,7 +2399,7 @@ meta.data.dynamicSchema = [
|
|
|
2375
2399
|
placeholder: 'Example: "My doctor or attorney was negligent in providing care."',
|
|
2376
2400
|
}),
|
|
2377
2401
|
legalCrossSells({
|
|
2378
|
-
headlineClass:
|
|
2402
|
+
headlineClass: "!t-text-dark",
|
|
2379
2403
|
nextStepMap: nextStepsMapLegalCrossSells,
|
|
2380
2404
|
}),
|
|
2381
2405
|
autoAndCarAccidentCrossSellQuestions(),
|
|
@@ -2387,48 +2411,49 @@ meta.data.dynamicSchema = [
|
|
|
2387
2411
|
willsAndTrustsCrossSellQuestions(),
|
|
2388
2412
|
divorceAndSeparationCrossSellQuestions(),
|
|
2389
2413
|
childCustodyCrossSellQuestions(),
|
|
2390
|
-
|
|
2414
|
+
firstAndLastV3({
|
|
2415
|
+
headlineClass: "!t-text-dark",
|
|
2416
|
+
}),
|
|
2391
2417
|
];
|
|
2392
2418
|
|
|
2393
2419
|
const schema = [
|
|
2394
2420
|
meta,
|
|
2395
2421
|
formAnchor(),
|
|
2396
2422
|
{
|
|
2397
|
-
$cmp:
|
|
2423
|
+
$cmp: "FormKit",
|
|
2398
2424
|
props: formProps({
|
|
2399
|
-
formId:
|
|
2425
|
+
formId: "malpractice",
|
|
2400
2426
|
redirectMap: legalRedirectMap(),
|
|
2401
2427
|
valueOverrideMap: legalAllValueOverrideMap,
|
|
2402
|
-
crossSellOptionMap: legalCrossSellOptionMap
|
|
2403
|
-
|
|
2428
|
+
crossSellOptionMap: legalCrossSellOptionMap,
|
|
2404
2429
|
}),
|
|
2405
2430
|
children: [
|
|
2406
2431
|
headline({
|
|
2407
2432
|
children: '$urlParam("hl", "Get Justice for Malpractice!")',
|
|
2408
|
-
if:
|
|
2433
|
+
if: "$activeStep === $firstStep()",
|
|
2409
2434
|
}),
|
|
2410
2435
|
subHeadline({
|
|
2411
2436
|
children: '$urlParam("shl", "Our Service is Fast, Easy, and Free")',
|
|
2412
|
-
if:
|
|
2437
|
+
if: "$activeStep === $firstStep()",
|
|
2413
2438
|
}),
|
|
2414
2439
|
...hiddenInputsLegal,
|
|
2415
2440
|
{
|
|
2416
|
-
$el:
|
|
2441
|
+
$el: "div",
|
|
2417
2442
|
attrs: {
|
|
2418
|
-
class:
|
|
2443
|
+
class: "form-body",
|
|
2419
2444
|
},
|
|
2420
2445
|
children: [
|
|
2421
2446
|
malpracticeTOLPAndZip({
|
|
2422
|
-
nextStepMap: nextStepsMapLegalLegacy
|
|
2447
|
+
nextStepMap: nextStepsMapLegalLegacy,
|
|
2423
2448
|
}),
|
|
2424
2449
|
dynamicSchemaNode(),
|
|
2425
2450
|
contactInfo(),
|
|
2426
2451
|
formNavigation(),
|
|
2427
|
-
formDetails()
|
|
2428
|
-
]
|
|
2429
|
-
}
|
|
2430
|
-
]
|
|
2431
|
-
}
|
|
2452
|
+
formDetails(),
|
|
2453
|
+
],
|
|
2454
|
+
},
|
|
2455
|
+
],
|
|
2456
|
+
},
|
|
2432
2457
|
];
|
|
2433
2458
|
|
|
2434
2459
|
export { schema as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var malpractice=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a='$getKey($meta, "finalHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalHeadline)',r='$getKey($meta, "finalSubHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalSubHeadline)',i=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"checkbox",validation:"required",validationMessages:{required:"Field is required"}},t)),n=e=>(e&&e.legendClass||(e.legendClass="required"),e.fieldsetClass="$reset",e.optionsClass="t-pl-8 md:t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",i(e)),s=e=>(e&&e.legendClass||(e.legendClass="required t-w-[100%] t-text-center"),e.fieldsetClass="$reset t-flex t-justify-center t-flex-col",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",e.optionClass="t-pl-4 md:t-pl-16 md:t-min-w-[200px]",e.optionsClass="t-pl-4 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-0 t-mb-4 !t-text-sm t-text-center",i(e)),l=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),o=e=>(e.legendClass="required",e.fieldsetClass="$reset",e.optionsClass="t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",l(e)),d=e=>(e.legendClass="required t-w-[100%] t-text-center",void 0===e.fieldsetClass&&(e.fieldsetClass="$reset t-flex t-justify-center"),e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",e.optionClass="t-pl-4 md:t-pl-8 md:t-min-w-[200px]",e.optionsClass="t-pl-4 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-0 t-mb-4 !t-text-sm t-text-center",l(e)),c=e=>(e.legendClass="legend-left-flex md:t-max-w-[40%] required",e.fieldsetClass="$reset side-by-side-flex",e.optionsClass="md:t-ml-4 md:t-mt-2 t-grid t-grid-cols-1 md:t-grid-cols-2-125",e.innerClass="t-flex t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",l(e)),u=e=>(e.options=["Yes","No"],(e=>(e.legendClass="legend-left t-pb-1 required",e.fieldsetClass="$reset side-by-side t-items-center",e.optionsClass="t-mt-1 t-grid t-grid-cols-1 md:t-grid-cols-2-125 t-items-center",e.innerClass="t-flex t-items-center",e.optionClass="t-pr-1",l(e)))(e)),p=e=>(e.legendClass="legend-left",e.fieldsetClass="$reset t-flex t-justify-center t-flex-col-reverse t-items-center",void 0===e.optionsClass&&(e.optionsClass="t-flex t-flex-col sm:t-flex-row t-justify-center t-my-3"),e.optionClass="radiobtn t-my-2 sm:t-my-0 t-mx-2 md:t-mx-5",e.wrapperClass="$reset formkit-wrapper t-mb-0 t-flex t-items-center t-h-[100%]",e.labelClass="t-font-semibold t-text-[#1e448f] t-w-[100%]",e.decoratorIcon=!1,e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-2.5 !t-text-sm t-text-center",l(e)),m=e=>(e.options=["Yes","No"],e.optionsClass="t-flex t-justify-center t-my-3",p(e)),f=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"select",placeholder:"Please Select",validation:"required",validationMessages:{required:"Field is required"},inputClass:"t-bg-white",labelClass:"required"},t)),y=e=>(e.labelClass="required",e.wrapperClass="side-by-side t-items-center",e.innerClass="select-height-content",e.helpClass="t-mt-2.5 md:t-text-right md:t-mt-[-5px]",f(e)),h=e=>(e.labelClass="required",e.wrapperClass="t-flex t-justify-center",e.messagesClass="t-flex t-justify-center",e.inputClass="t-min-w-[150px] t-bg-white",e.helpClass="t-mt-2.5 t-text-center",f(e)),b=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)),_=e=>(e.wrapperClass="side-by-side t-items-center",b(e)),g=e=>(e.wrapperClass="t-flex t-justify-center",e.messagesClass="t-flex t-justify-center",e.inputClass="t-text-center",e.helpClass="t-mt-2.5 !t-text-sm t-text-center",b(e)),C=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"DatePicker",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required t-block t-mb-3 t-font-semibold t-text-base formkit-invalid:t-text-red-500",innerClass:"t-border t-border-gray-400 formkit-invalid:t-border-red-500 t-rounded t-mb-1 focus-within:t-border-blue-500"},t)),v=e=>(e.wrapperClass="side-by-side t-items-center",C(e)),I=e=>(e.wrapperClass="t-flex t-justify-center",e.inputClass="t-text-center",e.messagesClass="t-flex t-justify-center",C(e)),w=(e,t,a={})=>(t?g:_)({$formkit:"email",name:e?e+":Email":"Email",label:t?a.label:"Email Address:",placeholder:"email@domain.com",autocomplete:"email","data-tf-sensitive":"false",validation:"required|email",validationMessages:{required:"Email is required",email:"Invalid Email"},...a}),x=(e,t,a={})=>(t?g:_)({label:t?a.label:"First Name:",placeholder:"First",name:e?e+":First_Name":"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"},...a}),P=(e,t,a={})=>(t?g:_)({label:t?a.label:"Last Name:",placeholder:"Last",name:e?e+":Last_Name":"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"},...a}),S=(e,t,a={})=>(t?g:_)({$formkit:"tel",name:e?e+":Primary_Phone":"Primary_Phone",label:t?a.label:"Phone Number:",placeholder:"###-###-####",maxlength:12,help:"10-digit phone number, hyphens optional",autocomplete:"tel-national","data-tf-sensitive":"false",validation:"required|matches:/^[0-9]{3}-?[0-9]{3}-?[0-9]{4}$/|valid_phone",validationMessages:{required:"Phone Number is required",matches:"Invalid Phone Format, use ###-###-####",valid_phone:"Invalid Phone Number"},helpClass:"t-mt-2.5 md:t-text-right md:t-mt-[-2px]",...a}),T=(e,t,a={})=>(t?g:_)({label:t?a.label:"Zip Code:",help:t?a.help??"We try to match you with local help":null,placeholder:"#####",name:e?e+":Zip":"Zip",maxlength:5,inputmode:"numeric",autocomplete:"postal-code",validation:"required|matches:/^[0-9]{5}$/",validationMessages:{required:"Zip Code is required",matches:"Invalid Zip Code"},...a}),D=(t,a,r={})=>(a?g:_)(e({label:a?r.label:"Age of Applicant?",placeholder:"Age between 18 and 65",name:t?t+":Applicant_Age":"Applicant_Age",value:a?r.value??"50":null,maxlength:2,inputmode:"numeric",validation:"required|min:18,max:65",validationMessages:{required:"Applicant Age is required",min:"Invalid Age - must be between 18 and 65",max:"Invalid Age - must be between 18 and 65"},...r})),k=(t,a,r={})=>(a?m:u)(e({label:a?r.label:"Were You at Fault?",name:t?t+":At_Fault":"At_Fault"},r)),L=e=>{return(t={label:"I'd also like a consult for bankruptcy or debt elimination (optional)",help:"Note: you will be contacted separately by a bankruptcy/debt expert",name:e?e+":CrossSell_Bankruptcy":"CrossSell_Bankruptcy",id:e?e+":CrossSell_Bankruptcy":"CrossSell_Bankruptcy",if:'$getVal($get(form), "Type_Of_Legal_Problem") != "Bankruptcy" && ($getVal($get(form), "Degree_Of_Interest") == "Absolutely Can\'t Afford" || $getVal($get(form), "Degree_Of_Interest") == "Maybe" || $getVal($get(form), "Degree_Of_Interest") == "Probably")',validation:null,helpClass:"!t-text-sm"}).legendClass="legend-left required",t.fieldsetClass="$reset side-by-side",t.optionsClass="t-pl-1",t.innerClass="t-flex t-items-center",t.wrapperClass="t-mb-3",i(t);var t},$=(t,a,r={})=>(a?h:y)(e({label:a?r.label:"Blood Alcohol Content Measured by Test:",name:t?t+":Blood_Alcohol_Content_Test":"Blood_Alcohol_Content_Test",options:["No Test","0.00% - 0.04%","0.05% - 0.08%","0.09% - 0.12%","0.13% - 0.16%","0.17% - 0.20%","More than 0.20%","Don't know"]},r)),A=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Cause of Injury:",name:t?t+":Cause_Of_Injury":"Cause_Of_Injury",options:["Traumatic Physical Injury (Accident)","Repeated Trauma Injury","Mental Injury","Occupational Disease","Not Sure"]},r)),O=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"With Whom Do the Children Currently Live?",name:t?t+":Child_Home":"Child_Home",options:["Mother","Father","Grandparents","Other"]},r)),E=(t,a,r={})=>(a?p:y)(e({label:a?r.label:"Who is the Primary Caregiver?",name:t?t+":Child_Primary_Caregiver":"Child_Primary_Caregiver",options:["Mother","Father","Other"]},r)),W=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Your Relationship to Child(ren):",name:t?t+":Child_Relationship":"Child_Relationship",options:["Father","Mother","Grandparent","Aunt/Uncle","Other"]},r)),j=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Status of Claim:",name:t?t+":Claim_Status":"Claim_Status",options:["No action taken yet","Demand for compensation made","Lawsuit filed","Other"]},r)),M=(t,a,r)=>(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t)))(e({name:t?t+":Comments":"Comments",label:"Please briefly describe your situation in a few words:",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},r)),B=(t,a,r={})=>(a?d:y)(e({name:t?t+":Degree_Of_Interest":"Degree_Of_Interest",id:t?t+":Degree_Of_Interest":"Degree_Of_Interest",label:a?r.label:"How Likely Are You to Pay if Your Issue Could be Resolved?",help:a?r.help:"No payment necessary to speak with lawyers.",options:["Definitely","Probably","Maybe","Absolutely Can't Afford"]},r)),N=(t,a,r={})=>B(t,a,e(r,{help:"No payment necessary to speak with lawyers."})),F=(t,a,r={})=>(a?m:u)(e({name:t?t+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:a?r.label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"},r)),q=(t,a,r={})=>(a?m:u)(e({name:t?t+":Disability_Work_History":"Disability_Work_History",label:a?r.label:"Have You Had a Full-Time Job Within the Past 5 Years?"},r)),U=(t,a,r={})=>(a?m:u)(e({name:t?t+":Doctor_Treatment":"Doctor_Treatment",label:a?r.label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"},r)),Y=(t,a,r={})=>(a?d:y)(e({name:t?t+":Estate_Legal_Services_Needed":"Estate_Legal_Services_Needed",label:a?r.label:"Legal Services Needed for Your Estate:",options:["Charitable Giving","Contested Wills","Drafting Wills or Trust","Estate Administration","Asset Protection","Other"]},r)),R=(t,a,r={})=>(a?m:u)(e({label:a?r.label:"Already Working with An Attorney?",name:t?t+":Have_Attorney":"Have_Attorney"},r)),H=(t,a,r={})=>(a?m:u)(e({name:t?t+":Have_Children":"Have_Children",label:a?r.label:"Do You Have Children?"},r)),Q=(t,a,r={})=>(a?I:v)(e({label:a?r.label:"Date of Incident:",name:t?t+":Incident_Date":"Incident_Date"},r)),K=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"The Other Party is a:",name:t?t+":Lawsuit_Other_Party":"Lawsuit_Other_Party",options:["Individual","Small Business","Large Corporation","Government Entity"]},r)),V=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"How Will You Pay for Legal Fees if You Hire a Lawyer?",help:a?r.help:"No payment necessary to start a consultation.",name:t?t+":Lawyer_Payment_Method":"Lawyer_Payment_Method",options:a?{Cash:"Cash","Credit Card":"Credit Card",Family:"Family or Friend",Other:"Other"}:["Cash","Check","Credit Card","Friend","Family","Other"],fieldsetClass:a?"$reset t-flex t-flex-col t-items-center":void 0},r)),z=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Marital Status:",name:t?t+":Marital_Status":"Marital_Status",options:["Unmarried, Living Together","Unmarried, Do Not Live Together","Married, Living Together","Separated","Divorced","Other"]},r)),G=(t,a,r={})=>(a?h:y)(e({label:a?r.label:"Injuries from Medical Malpractice:",name:t?t+":Medical_Malpractice_Injuries":"Medical_Malpractice_Injuries",options:["No Injury","Minor Injury","Disfigurement or cosmetic injury","Short term loss of physical ability","Long term loss of physical injury","Possibility of future harm","Death of Patient"]},r)),Z=(t,a,r={})=>(a?d:o)(e({label:a?r.label:"Select The Malpractice Issue:",name:t?t+":Type_Of_Legal_Problem_Display":"Type_Of_Legal_Problem_Display",options:["Medical Malpractice","Attorney Malpractice","Other Malpractice Issues"]},r)),J=(t,a,r={})=>(a?m:u)(e({name:t?t+":Pending_Charges":"Pending_Charges",label:a?r.label:"Do you currently have any pending charges?"},r)),X=(t,a,r={})=>(a?d:c)(e({label:a?r.label:"Primary Injury:",name:t?t+":Primary_Injury":"Primary_Injury",options:["Anxiety","Back or Neck Pain","Broken Bones","Cuts and Bruises","Headaches","Memory Loss","Loss of Limb","Not Sure or Other"]},r)),ee=(t,a,r={})=>(a?m:u)(e({name:t?t+":Prior_Alcohol_Offenses":"Prior_Alcohol_Offenses",label:a?r.label:"Any Prior Alcohol Related Offenses?"},r)),te=(t,a,r={})=>(a?m:u)(e({name:t?t+":Police_Report_Filed":"Police_Report_Filed",label:a?r.label:"Was a Police Report Filed?"},r)),ae=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"What is Your Role in this Matter?",name:t?t+":Role_In_Matter_Probate":"Role_In_Matter_Probate",options:["Preparing My Will","Executor","Heir","Other"]},r)),re=(t,a,r={})=>(a?m:u)(e({name:t?t+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:a?r.label:"Are You Currently Receiving Social Security Disability Benefits?"},r)),ie=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Type of Alcohol Test Performed?",name:t?t+":Type_Of_Alcohol_Test":"Type_Of_Alcohol_Test",options:["No Test","Refused Test","Breath Test","Blood Test","Urine Test","Don't Know"]},r)),ne=(t,a,r={})=>(a?s:n)(e({label:a?r.label:"Type of Assets:",name:t?t+":Type_Of_Assets":"Type_Of_Assets",options:["Business Interests","Cash","Life Insurance Policies","Pensions/Retirement","Personal Possessions","Property","Stock/Bonds"]},r)),se=(t,a,r={})=>(a?d:y)(e({label:a?r.label:"Value of Your Assets?",name:t?t+":Value_Of_Assets":"Value_Of_Assets",options:["Less than 50K","50K to 100K","100K to 250K","250K to 500K","500K to 1M","More than 1M"]},r)),le=(t,a)=>e({$cmp:"FormKit",props:{type:"group",key:t,id:t,name:t}},a),oe=(e,t)=>le("CivilLawsuitQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Civil Lawsuit"',children:[R(t),K(t),N(t)]}),de=(e,t)=>le("NotSureOrOtherQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Not Sure or Other"',children:[R(t),N(t)]}),ce="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",ue="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",pe=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,me=e=>{if(pe(e))return e;for(var t=e.children.length-1;t>=0;t--){if("string"==typeof e.children)continue;const a=e.children[t];if(pe(a))return a;const r=me(a);if(r)return r}return null},fe={$el:"div",if:"$activeStep === $lastStep()",attrs:{class:"t-flex t-justify-center t-items-center t-text-sm t-text-gray-500"},children:[{$el:"img",attrs:{loading:"lazy",alt:"",style:{border:0},width:"25",height:"25",src:"https://d27hmee62k45vz.cloudfront.net/lock_icon_1.jpeg"}},{$el:"span",children:"Secure & Encrypted",attrs:{class:"t-pl-2 t-pt-1 t-font-medium"}}]};function ye(t){return e(fe,t)}function he(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function be(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-4 t-pt-0 t-px-1"}}}function _e(e){return{$el:"h5",children:e.subheadline||"Tell us about your situation:",attrs:{class:"t-flex t-justify-center t-text-dark t-text-center !t-text-lg t-font-semibold t-pb-4 t-pt-0 t-px-3"}}}function ge(e){return function(e){return{$el:"h3",children:e.headline||"Additional Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}({headline:e.headline||"Additional Case Details",headlineClass:e.headlineClass})}function Ce(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function ve(e){return{$el:"h3",children:e.headline||"Do any of the following situations apply?",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function Ie(e){return{$el:"h3",children:e.headline||a,attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-3 t-pt-0 t-px-1 "+(e.headlineClass||"")+" f-contact-info-headline"}}}function we(e){return{$el:"h5",children:e.subheadline||r,attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-7 t-pt-0 t-px-3 "+(e.subheadlineClass||"")+" f-contact-info-subheadline"}}}const xe="(function() {\n if (window.xxTrustedFormLoaded) {\n return\n }\n var vid = '';\n if (typeof window.zar !== 'undefined') {\n vid = window.zar.getVID();\n }\n window.xxTrustedFormLoaded = true;\n var sandbox = document.location.hostname.indexOf('localhost') > -1 ? 'true' : 'false'\n var tf = document.createElement('script');\n tf.type = 'text/javascript'; tf.async = true;\n tf.src = (\"https:\" == document.location.protocol ? 'https' : 'http') + \"://api.trustedform.com/trustedform.js?field=xxTrustedFormCertUrl&identifier=\" + vid + \"&ping_field=xxTrustedFormPingUrl&provideReferrer=false&invert_field_sensitivity=true&sandbox=\" + sandbox + \"&l=\" + new Date().getTime() + Math.random();\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(tf, s);\n})();";const Pe=(e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}});function Se(t,a,r={}){const{nextOnEnter:i=!0,nextOnInput:n=!1,stepKey:s,nextStepMap:l,triggerRedirectMap:o,autoFocus:d}=r;if(a&&a.length&&(i||n)){const e=me(a[a.length-1]);e&&!0===i&&(e.onKeypress=ce),e&&!0===n&&(e.onInput=ue)}return e(Pe(t,s),{children:[{$formkit:"group",id:t,name:t,nextStepMap:l,triggerRedirectMap:o,autoFocus:d,children:a}]})}const Te={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};function De(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const ke={};const Le={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const $e=[{$formkit:"hidden",name:"vertical",value:"Legal"},{$formkit:"hidden",name:"TCPA_Language",value:"$meta.tcpaLanguage"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],Ae={"*":"https://listings.ziplawyer.com/api/v1/redirect?zone_id=4&vertical=Legal&category=${properties.Type_Of_Legal_Problem}&Degree_Of_Interest=${properties.Degree_Of_Interest}&zip_code=${properties.Zip}&sub_id=${properties.vid}"};const Oe={Civil_Defense:{Yes:{Type_Of_Legal_Problem:"Defend a Lawsuit"},No:{Type_Of_Legal_Problem:"File a Lawsuit"}},businessServicesOverrideMap:{Business_Services_Display:{"Business Formation":{Business_Services:"Business Formation"},Contracts:{Business_Services:"Contracts"},"Insurance and Liability":{Business_Services:"Insurance and Liability"},"Mergers and Acquisition":{Business_Services:"Mergers and Acquisition"},"Regulatory Compliance":{Business_Services:"Regulatory Compliance"},"Employee Dispute":{Business_Services:"Employee Dispute"},"Advice and Consulting":{Business_Services:"Other"},Other:{Business_Services:"Other"}}},Type_Of_Legal_Problem_Display:{Copyrights:{Type_Of_Legal_Problem:"Copyrights and Trademarks"},Trademarks:{Type_Of_Legal_Problem:"Copyrights and Trademarks"},Patents:{Type_Of_Legal_Problem:"Patents and Intellectual Property"},"Business Lawyers":{Type_Of_Legal_Problem:"Business Lawyers"},"Business Consulting":{Type_Of_Legal_Problem:"Business Lawyers"},"Not Sure or Other":{Type_Of_Legal_Problem:"Not Sure or Other"},"Auto Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Dog Bite":{Type_Of_Legal_Problem:"Personal Injury"},"Slip and Fall":{Type_Of_Legal_Problem:"Personal Injury"},"Workplace Injury":{Type_Of_Legal_Problem:"Workers Compensation"},"Trucking Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Motorcycle Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Other Accidents or Injuries":{Type_Of_Legal_Problem:"Personal Injury"},"Automobile Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Contract Disputes":{Type_Of_Legal_Problem:"Business Lawyers"},"Defamation and Slander":{Type_Of_Legal_Problem:"File a Lawsuit"},"Dog Bite":{Type_Of_Legal_Problem:"Personal Injury"},"Employment and Workplace":{Type_Of_Legal_Problem:"Employment and Workplace"},Fraud:{Type_Of_Legal_Problem:"Consumer Lawyers"},"Medical Malpractice":{Type_Of_Legal_Problem:"Medical Malpractice"},"Personal Injury":{Type_Of_Legal_Problem:"Personal Injury"},"Property Damage":{Type_Of_Legal_Problem:"Property Damage"},"Small Claims":{Type_Of_Legal_Problem:"File a Lawsuit"},"Real Estate":{Type_Of_Legal_Problem:"Real Estate"},"Other (describe on next page)":{Type_Of_Legal_Problem:"Not Sure or Other"},"Contract Creation":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Enforcement":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Cancellation":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Fraud":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Breach of Contract":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Other Contract Issues":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Criminal Defense":{Type_Of_Legal_Problem:"Criminal and Felony"},"Victim of a Crime":{Type_Of_Legal_Problem:"Victim of a Crime"},"DUI and DWI":{Type_Of_Legal_Problem:"DUI and DWI"},Expungement:{Type_Of_Legal_Problem:"Expungement"},Harassment:{Type_Of_Legal_Problem:"Criminal and Felony"},"Not Sure or Other":{Type_Of_Legal_Problem:"Not Sure or Other"},"Workplace Harassment":{Type_Of_Legal_Problem:"Workplace Harassment"},"Workplace Discrimination":{Type_Of_Legal_Problem:"Workplace Discrimination"},"Wrongful Termination":{Type_Of_Legal_Problem:"Wrongful Termination"},"Payment Disputes":{Type_Of_Legal_Problem:"Employment and Workplace"},"Workers Compensation":{Type_Of_Legal_Problem:"Workers Compensation"},Unemployment:{Type_Of_Legal_Problem:"Unemployment"},"Other Workplace Issues":{Type_Of_Legal_Problem:"Employment and Workplace"},"Attorney Malpractice":{Type_Of_Legal_Problem:"Civil Lawsuit"},"Other Malpractice Issues":{Type_Of_Legal_Problem:"Not Sure or Other"},"Vehicle Repossession":{Type_Of_Legal_Problem:"Bankruptcy"},"Property Repossession":{Type_Of_Legal_Problem:"Bankruptcy"},"Other Repossession Issues":{Type_Of_Legal_Problem:"Not Sure or Other"},"Contracts and Agreements":{Type_Of_Legal_Problem:"Real Estate"},"Deeds, Liens, and Titles":{Type_Of_Legal_Problem:"Real Estate"},Foreclosure:{Type_Of_Legal_Problem:"Foreclosure"},Insurance:{Type_Of_Legal_Problem:"Insurance"},"Landlord and Tenant":{Type_Of_Legal_Problem:"Landlord and Tenant"},"Loans and Mortgages":{Type_Of_Legal_Problem:"Real Estate"},"Wills, Trusts, and Estates":{Type_Of_Legal_Problem:"Wills and Trusts"},"Property Damage":{Type_Of_Legal_Problem:"Property Damage"},"Other Real Estate Issues":{Type_Of_Legal_Problem:"Real Estate"}}},Ee={Adoption:'Example: "I need help with adoption forms"',"Asbestos and Mesothelioma":'Example: "I was exposed to asbestos at work and would like to file a claim"',"Auto and Car Accidents":'Example: "A truck crashed into my car on the highway" or "I\'ve been involved in a hit and run accident"',Bankruptcy:'Example: "I need help filing for bankruptcy"',"Birth Certificate and Name Change":'Example: "Just married and would like to change my last name"',"Business Lawyers":'Example: "I need help incorporating a business" or "I would like a legal contract reviewed"',"Child Custody and Support":'Example: "Need help getting custody" or "Issues with child support payments"',"Child Custody":'Example: "Need help getting custody"',"Child Support":'Example: "Issues with child support payments"',"Civil Rights and Discrimination":'Example: "Police brutality" or "Coworker keeps harassing me"',"Civil Lawsuit":'Example: "A contractor took my money and never completed the job" or "I am being sued by a neighbor"',"File a Lawsuit":'Example: "A contractor took my money and never completed the job"',"Defend a Lawsuit":'Example: "I am being sued by a neighbor"',"Consumer Lawyers":'Example: "Someone committed fraud against me" or "A contractor took my money and never completed the job"',"Copyrights and Trademarks":'Example: "I would like to register a trademark or copyright a name"',"Criminal and Felony":'Example: "I was arrested for DUI and need legal defense" or "I am being charged with assault"',"Debt and Collections":'Example: "I would like to consolidate my debt" or "A collection agency is harassing me"',"Divorce and Separation":'Example: "I would like to file for an uncontested divorce"',"DUI and DWI":'Example: "I was arrested for DUI and need legal defense"',"Elder Law":'Example: "I would like help with Estate Planning" or "I need help with a guardianship"',"Employment and Workplace":'Example: "I was injured while on the job" or "My company is discriminating against me"',Expungement:'Example: "I would like to file for an expungement and clear my record"',"Family Issues":'Example: "I need help with guardianship" or "I need a simple will created"',Foreclosure:'Example: "I need help to avoid foreclosure on my house"',Guardianship:'Example: "I need help with guardianship documents"',"Harassment and Discrimination":'Example: "I am being discriminated at work" or "My neighbor is harassing me"',"Sexual Harassment":'Example: "I am being sexually harassed by a coworker"',"Workplace Harassment":'Example: "My coworker is being aggressive towards me"',"Non-Workplace Harassment":'Example: "My neighbor is harassing me"',"Workplace Discrimination":'Example: "I am being discriminated at work based on my age"',"Non-Workplace Discrimination":'Example: "I am being discriminated against by a local official"',"Identity Theft":'Example: "Someone stole my identity and I need help fixing the issue"',"Immigration and Visas":'Example: "I need help filing for a visa" or "Help with a green card"',Insurance:'Example: "I need help filing an insurance claim for damage to my house"',"Landlord and Tenant":'Example: "I need help to fight an eviction" or "I would like a lawyer to review a rental contract"',"Lemon Law":'Example: "I purchased a new vehicle that broke down already and seller will not assist"',"Long Term Disability":'Example: "I was injured on the job and would like to file for benefits" or "I need help filing for disability benefits"',"Medical Malpractice":'Example: "A doctor performed surgery on the wrong limb and I would like to file a lawsuit"',"Patents and Intellectual Property":'Example: "I would like to file for a patent" or "I need to copyright a name"',"Personal Injury":'Example: "I was bit by the neighbor\'s dog" or "I fell in the icy grocery store parking lot"',"Power of Attorney":'Example: "I need help with a limited or general power of attorney"',"Probate and Estates":'Example: "I need help with planning for my estate" or "A family member passed without a will in place"',"Product Liability":'Example: "My car battery caught on fire" or "I purchased a faulty product"',"Property Damage":'Example: "The neighbor\'s tree fell on my fence" or "My car was hit in the parking lot"',"Real Estate":'Example: "I need help with a quitclaim deed" or "I need a lawyer to review a purchase and sales agreement"',"Social Security Disability and Insurance":'Example: "I would like help filing for disability benefits" or "I\'ve been denied for SSDI and would like to appeal"',"Tax and IRS":'Example: "I need help fighting an IRS tax claim" or "I need audit defense"',"Traffic and Tickets":'Example: "I need help reinstating a supsended license" or "I would like to fight a traffic ticket"',Unemployment:'Example: "I need help filing for unemployment benefits"',"Victim of a Crime":'Example: "I was assaulted in the store" or "I am being discriminated against at work"',"Wills and Trusts":'Example: "I need a simple will created" or "I would like guidance on creating a trust fund"',"Workers Compensation":'Example: "I was injured at work and would like to file for workers compensation benefits"',"Wrongful Death":'Example: "A family member was killed on the job and we need legal representation"',"Wrongful Termination":'Example: "I was fired by my employer without cause"',"Not Sure or Other":'Example: "I was involved in a car accident" or "I need help setting up power of attorney"'},We={},je={Adoption:"You may benefit from speaking with an adoption professional. Please verify your contact information.","Auto and Car Accidents":"You may benefit from speaking with an accident professional. Please verify your contact information.",Bankruptcy:"You may benefit from speaking with a bankruptcy professional. Please verify your contact information.","Copyrights and Trademarks":"You may benefit from speaking with a copyright and trademark professional. Please verify your contact information.","Divorce and Separation":"You may benefit from speaking with a divorce professional. Please verify your contact information.","DUI and DWI":"You may benefit from speaking with a DUI professional. Please verify your contact information.","Elder Law":"You may benefit from speaking with an elder law professional. Please verify your contact information.",Foreclosure:"You may benefit from speaking with a foreclosure professional. Please verify your contact information.",Guardianship:"You may benefit from speaking with a guardianship professional. Please verify your contact information.","Immigration and Visas":"You may benefit from speaking with a immigration professional. Please verify your contact information.","Landlord and Tenant":"You may benefit from speaking with a landlord and tenant legal professional. Please verify your contact information.","Long Term Disability":"You may benefit from speaking with a disability legal professional. Please verify your contact information.","Medical Malpractice":"You may benefit from speaking with a malpractice professional. Please verify your contact information.","Patents and Intellectual Property":"You may benefit from speaking with a patent professional. Please verify your contact information.","Personal Injury":"You may benefit from speaking with a personal injury professional. Please verify your contact information.","Probate and Estates":"You may benefit from speaking with a probate and estate professional. Please verify your contact information.","Real Estate":"You may benefit from speaking with a real estate professional. Please verify your contact information.","Social Security Disability and Insurance":"You may benefit from speaking with an SSDI professional. Please verify your contact information.","Tax and IRS":"You may benefit from speaking with a tax professional. Please verify your contact information.",Unemployment:"You may benefit from speaking with an unemployment professional. Please verify your contact information.","Workers Compensation":"You may benefit from speaking with a workers compensation professional. Please verify your contact information."},Me={"Auto and Car Accidents":{"Social Security Disability and Insurance":"Interest in Disability Benefits","Wills and Trusts":"Need a Will or Trust","Workers Compensation":"Workplace Injury","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Personal Injury":{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Workers Compensation":{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"DUI and DWI":{"Personal Injury":"Personal or Workplace Injury","Wills and Trusts":"Need a Will or Trust","Social Security Disability and Insurance":"Interest in Disability Benefits","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Wills and Trusts":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Probate and Estates":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Power of Attorney":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Long Term Disability":{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Social Security Disability and Insurance":{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"*":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Social Security Disability and Insurance":"Interest in Disability Benefits"}},Be=function(a=null){let r=Ee,i=We,n=je;return a&&(r=De(Ee,a),i=De(We,a),n=De(je,a)),{type:"meta",data:e(ke,{tcpaLanguage:"By checking this box, I a) agree to the Terms of Use, and b) consent to be contacted by lawyers, lawyer networks, and partners of this website using live, autodialed, pre-recorded, or artificial voice calls, as well as text messages. Your consent is not required as a condition of purchasing any goods or services. To submit this request without this consent, call 878-213-4937.",defaultCommentsPlaceholder:t,commentsPlaceholders:r,defaultFinalHeadline:"Submit Your Case",finalHeadlines:i,defaultFinalSubHeadline:"You may benefit from speaking with a legal professional. Please verify your contact information.",finalSubHeadlines:n})}}();Be.data.dynamicSchema=[function(e={}){return Se("TOLPQuestions",[he(e),le("MedicalMalpracticeQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Medical Malpractice"',children:[R(a),Q(a),j(a),U(a),G(a),N(a)]}),oe(),de()],e);var t,a}(),function(e={}){return Se("commentsWithBankruptcy",[ge(e),M(e.scope,0,{label:void 0===e.label?"Please briefly describe your legal issue in a few words:":e.label,placeholder:e.placeholder||t,inputClass:void 0===e.inputClass?"!t-h-32":e.inputClass}),L(),{$el:"div",if:"$get(CrossSell_Bankruptcy).value == true",children:[M("CrossSell:Bankruptcy",0,{label:"Bankruptcy or debt details:",placeholder:"Please describe your bankrtupcy or debt situation in a few words...",inputClass:"!t-h-16"})]}],{nextOnEnter:!1})}({placeholder:'Example: "My doctor or attorney was negligent in providing care."'}),function(e={}){return e.nextOnInput=!1,e.stepKey="$get(Type_Of_Legal_Problem).value",Se("legalCrossSells",[ve(e),n({id:"Legal_CrossSells",name:"Legal_CrossSells",help:'Just hit "Next" if none apply',helpClass:"t-text-center !t-text-sm",validation:null,options:'$getCrossSellOptions($get(form), $getVal($get(form), "Type_Of_Legal_Problem"))'})],e)}({headlineClass:"!t-text-dark",nextStepMap:{values:{Legal_CrossSells:{"Auto and Car Accidents":["autoAndCarAccidentCrossSellQuestions"],"Personal Injury":["personalInjuryCrossSellQuestions"],"Workers Compensation":["workersCompensationCrossSellQuestions"],"DUI and DWI":["duiAndDWICrossSellQuestions"],"Long Term Disability":["longTermDisabilityCrossSellQuestions"],"Social Security Disability and Insurance":["ssdiCrossSellQuestions"],Bankruptcy:["bankruptcyCrossSellQuestions"],"Power of Attorney":["powerOfAttorneyCrossSellQuestions"],"Wills and Trusts":["willsAndTrustsCrossSellQuestions"],"Divorce and Separation":["divorceAndSeparationCrossSellQuestions"],"Child Custody":["childCustodyCrossSellQuestions"]},"*":["firstAndLast","contactInfo"]},appendSteps:["firstAndLast","contactInfo"],matchesAllowed:1}}),function(e={}){return Se("autoAndCarAccidentCrossSellQuestions",[be({headline:"You May Be Entitled To Compensation"}),_e({subheadline:"Tell us about your accident:"}),(t="true",a="CrossSell:Auto_and_Car_Accidents",le("AutoAndCarAccidentsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Auto and Car Accidents"',children:[R(a),Q(a),k(a),X(a),U(a),te(a)]})),M("CrossSell:Auto_and_Car_Accidents",0,{label:"Accident Description:",placeholder:"Please describe your accident in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("personalInjuryCrossSellQuestions",[be({headline:"You May Be Entitled To Compensation"}),_e({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Personal_Injury",le("PersonalInjuryQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Personal Injury"',children:[R(a),Q(a),j(a),k(a),X(a),U(a)]})),M("CrossSell:Personal_Injury",0,{label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("workersCompensationCrossSellQuestions",[be({headline:"You May Be Entitled To Benefits"}),_e({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Workers_Compensation",le("WorkersCompensationQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Workers Compensation"',children:[R(a),Q(a),j(a),X(a),A(a),U(a)]})),M("CrossSell:Workers_Compensation",0,{label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("duiAndDWICrossSellQuestions",[be({headline:"About Your DUI/DWI"}),(t="true",a="CrossSell:DUI_and_DWI",le("DUIAndDWIQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "DUI and DWI"',children:[R(a),Q(a),ee(a),ie(a),$(a),J(a),N(a)]})),M("CrossSell:DUI_and_DWI",0,{label:"Incident Description:",placeholder:"Please describe your incident in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("ssdiCrossSellQuestions",[be({headline:"You May Be Entitled To Benefits"}),_e({subheadline:"Tell us about your disability:"}),(t="true",a="CrossSell:Social_Security_Disability_and_Insurance",le("SocialSecurityDisabilityAndInsuranceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Social Security Disability and Insurance"',children:[R(a),D(a),F(a),q(a),re(a),U(a)]})),M("CrossSell:Social_Security_Disability_and_Insurance",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("powerOfAttorneyCrossSellQuestions",[be({headline:"Power of Attorney Information"}),(t="true",a="CrossSell:Power_of_Attorney",le("PowerofAttorneyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Power of Attorney"',children:[R(a),N(a)]})),M("CrossSell:Power_of_Attorney",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("willsAndTrustsCrossSellQuestions",[be({headline:"Will or Trust Information"}),(t="true",a="CrossSell:Wills_and_Trusts",le("WillsAndTrustsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Wills and Trusts"',children:[R(a),se(a),ne(a),ae(a),Y(a),N(a)]})),M("CrossSell:Wills_and_Trusts",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("divorceAndSeparationCrossSellQuestions",[be({headline:"Divorce or Separation Information"}),(t="true",a="CrossSell:Divorce_and_Separation",le("DivorceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Divorce and Separation"',children:[R(a),z(a),H(a),B(a),V(a)]})),M("CrossSell:Divorce_and_Separation",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("childCustodyCrossSellQuestions",[be({headline:"Child Custody Information"}),(t="true",a="CrossSell:Child_Custody",le("ChildCustodyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Child Custody"',children:[R(a),W(a),O(a),E(a),B(a),V(a)]})),M("CrossSell:Child_Custody",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return Se("firstAndLast",[Ce(e),x(e.scope),P(e.scope)],e)}()];const Ne=[Be,e(Le,Fe),{$cmp:"FormKit",props:function(t){const a=e(Te,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"malpractice",redirectMap:function(t){return e(Ae,t)}(),valueOverrideMap:Oe,crossSellOptionMap:Me}),children:[function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "+(e.headlineClass||"")+" f-first-headline"}}}(t),t)}({children:'$urlParam("hl", "Get Justice for Malpractice!")',if:"$activeStep === $firstStep()"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "+(e.subheadlineClass||"")+" f-first-subheadline"}}}(t),t)}({children:'$urlParam("shl", "Our Service is Fast, Easy, and Free")',if:"$activeStep === $firstStep()"}),...$e,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return Se("malpracticeTOLPAndZip",[{$formkit:"hidden",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",value:"Medical Malpractice"},Z(e.scope),T(e.scope)],e)}({nextStepMap:{values:{"*":["TOLPQuestions","commentsWithBankruptcy","legalCrossSells","firstAndLast","contactInfo"]}}}),function(e="Type_Of_Legal_Problem"){return{$cmp:"FormKitSchema",if:"$get("+e+").value",props:{schema:"$meta.dynamicSchema",data:"$buildData($meta)"}}}(),function(e={}){return Se("contactInfo",[Ie(e),we(e),{$el:"script",if:"$activeStep === $lastStep()",children:xe},w(e.scope),S(e.scope),(t=e.scope,{$formkit:"checkbox",label:"$meta.tcpaLanguage",__raw__sectionsSchema:{label:{attrs:{innerHTML:"$label"}}},name:t?t+":TCPA_Opt_In":"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{label:"t-text-xs t-text-slate-500 t-font-normal !t-leading-[0.9rem]"}}),ye()],{nextOnEnter:!1});var t}(),((e={})=>({$el:"div",attrs:{class:{if:"$activeStep === $firstStep()",then:"step-nav !t-justify-center sm:!t-justify-between",else:"step-nav !t-justify-between"}},children:[{$formkit:"button",name:"back_button",onClick:"$setPreviousStep($prevStepFunc($get(form)))",children:"Back",outerClass:{if:"$activeStep === $firstStep()",then:"t-hidden sm:t-block",else:""},style:{if:"$activeStep === $firstStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" f-navigation-input"}},{$formkit:"button",name:"next_button",onClick:"$setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form)))",children:{if:"$activeStep === $firstStep()",then:e.startText||"Start",else:"Next"},outerClass:{if:"$activeStep === $lastStep()",then:"t-hidden",else:""},style:{if:"$activeStep === $lastStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" f-navigation-input"}},{$formkit:"submit",name:"submit_button",label:e.submitLabel||"Submit",if:"$activeStep === $lastStep()",style:{if:"$activeStep !== $lastStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" !t-ml-2 sm:!t-ml-auto f-navigation-input"}}]}))(),{$el:"pre",if:'$urlParam("fdbg", "") == 1',children:[{$el:"pre",children:"$stringify( $get(form).value )",attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["activeStep: ","$activeStep"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepHistory: ","$stepHistory"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepQueue: ","$stepQueue"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["steps: ","$stepKeys()"],attrs:{class:"t-text-xs",style:"overflow: scroll"}}]}]}]}];var Fe;return Ne}();
|
|
1
|
+
var malpractice=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a='$getKey($meta, "finalHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalHeadline)',r='$getKey($meta, "finalSubHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalSubHeadline)',i=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"checkbox",validation:"required",validationMessages:{required:"Field is required"}},t)),n=e=>(e&&e.legendClass||(e.legendClass="required"),e.fieldsetClass="$reset",e.optionsClass="t-pl-8 md:t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",i(e)),s=e=>(e&&e.legendClass||(e.legendClass="required t-w-[100%] t-text-center"),e.fieldsetClass="$reset t-flex t-justify-center t-flex-col",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",e.optionClass="t-pl-4 md:t-pl-16 md:t-min-w-[200px]",e.optionsClass="t-pl-4 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-0 t-mb-4 !t-text-sm t-text-center",i(e)),l=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),o=e=>(e.legendClass="required t-w-[100%] t-text-center",void 0===e.fieldsetClass&&(e.fieldsetClass="$reset t-flex t-justify-center"),e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",e.optionClass="t-pl-4 md:t-pl-8 md:t-min-w-[200px]",e.optionsClass="t-pl-4 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-0 t-mb-4 !t-text-sm t-text-center",l(e)),d=e=>(e.legendClass="legend-left required",e.fieldsetClass="$reset side-by-side",e.optionsClass="t-pl-1",e.innerClass="t-flex t-items-center",e.wrapperClass="t-mb-3",l(e)),c=e=>(e.legendClass="legend-left-flex md:t-max-w-[40%] required",e.fieldsetClass="$reset side-by-side-flex",e.optionsClass="md:t-ml-4 md:t-mt-2 t-grid t-grid-cols-1 md:t-grid-cols-2-125",e.innerClass="t-flex t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",l(e)),u=e=>(e.options=["Yes","No"],(e=>(e.legendClass="legend-left t-pb-1 required",e.fieldsetClass="$reset side-by-side t-items-center",e.optionsClass="t-mt-1 t-grid t-grid-cols-1 md:t-grid-cols-2-125 t-items-center",e.innerClass="t-flex t-items-center",e.optionClass="t-pr-1",l(e)))(e)),p=e=>(e.legendClass="legend-left",e.fieldsetClass="$reset t-flex t-justify-center t-flex-col-reverse t-items-center",void 0===e.optionsClass&&(e.optionsClass="t-flex t-flex-col sm:t-flex-row t-justify-center t-my-3"),e.optionClass="radiobtn t-my-2 sm:t-my-0 t-mx-2 md:t-mx-5",e.wrapperClass="$reset formkit-wrapper t-mb-0 t-flex t-items-center t-h-[100%]",e.labelClass="t-font-semibold t-text-[#1e448f] t-w-[100%]",e.decoratorIcon=!1,e.messagesClass="t-flex t-justify-center",e.helpClass="t-mt-2.5 !t-text-sm t-text-center",l(e)),m=e=>(e.options=["Yes","No"],e.optionsClass="t-flex t-justify-center t-my-3",p(e)),f=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"select",placeholder:"Please Select",validation:"required",validationMessages:{required:"Field is required"},inputClass:"t-bg-white",labelClass:"required"},t)),y=e=>(e.labelClass="required",e.wrapperClass="side-by-side t-items-center",e.innerClass="select-height-content",e.helpClass="t-mt-2.5 md:t-text-right md:t-mt-[-5px]",f(e)),h=e=>(e.labelClass="required",e.wrapperClass="t-flex t-justify-center",e.messagesClass="t-flex t-justify-center",e.inputClass="t-min-w-[150px] t-bg-white",e.helpClass="t-mt-2.5 t-text-center",f(e)),b=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)),_=e=>(e.wrapperClass="side-by-side t-items-center",b(e)),g=e=>(e.wrapperClass="t-flex t-justify-center",e.messagesClass="t-flex t-justify-center",e.inputClass="t-text-center",e.helpClass="t-mt-2.5 !t-text-sm t-text-center",b(e)),C=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"DatePicker",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required t-block t-mb-3 t-font-semibold t-text-base formkit-invalid:t-text-red-500",innerClass:"t-border t-border-gray-400 formkit-invalid:t-border-red-500 t-rounded t-mb-1 focus-within:t-border-blue-500"},t)),v=e=>(e.wrapperClass="side-by-side t-items-center",C(e)),I=e=>(e.wrapperClass="t-flex t-justify-center",e.inputClass="t-text-center",e.messagesClass="t-flex t-justify-center",C(e)),w=(e,t,a={})=>(t?g:_)({$formkit:"email",name:e?e+":Email":"Email",label:t?a.label:"Email Address:",placeholder:"email@domain.com",autocomplete:"email","data-tf-sensitive":"false",validation:"required|email",validationMessages:{required:"Email is required",email:"Invalid Email"},...a}),x=(e,t,a={})=>(t?g:_)({label:t?a.label:"First Name:",placeholder:"First",name:e?e+":First_Name":"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"},...a}),P=(e,t,a={})=>(t?g:_)({label:t?a.label:"Last Name:",placeholder:"Last",name:e?e+":Last_Name":"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"},...a}),S=(e,t,a={})=>(t?g:_)({$formkit:"tel",name:e?e+":Primary_Phone":"Primary_Phone",label:t?a.label:"Phone Number:",placeholder:"###-###-####",maxlength:12,help:"10-digit phone number, hyphens optional",autocomplete:"tel-national","data-tf-sensitive":"false",validation:"required|matches:/^[0-9]{3}-?[0-9]{3}-?[0-9]{4}$/|valid_phone",validationMessages:{required:"Phone Number is required",matches:"Invalid Phone Format, use ###-###-####",valid_phone:"Invalid Phone Number"},helpClass:"t-mt-2.5 md:t-text-right md:t-mt-[-2px]",...a}),D=(e,t,a={})=>(t?g:_)({label:t?a.label:"Zip Code:",help:t?a.help??"We try to match you with local help":null,placeholder:"#####",name:e?e+":Zip":"Zip",maxlength:5,inputmode:"numeric",autocomplete:"postal-code",validation:"required|matches:/^[0-9]{5}$/",validationMessages:{required:"Zip Code is required",matches:"Invalid Zip Code"},...a}),T=(t,a,r={})=>(a?g:_)(e({label:a?r.label:"Age of Applicant?",placeholder:"Age between 18 and 65",name:t?t+":Applicant_Age":"Applicant_Age",value:a?r.value??"50":null,maxlength:2,inputmode:"numeric",validation:"required|min:18,max:65",validationMessages:{required:"Applicant Age is required",min:"Invalid Age - must be between 18 and 65",max:"Invalid Age - must be between 18 and 65"},...r})),k=(t,a,r={})=>(a?m:u)(e({label:a?r.label:"Were You at Fault?",name:t?t+":At_Fault":"At_Fault"},r)),L=e=>{return(t={label:"I'd also like a consult for bankruptcy or debt elimination (optional)",help:"Note: you will be contacted separately by a bankruptcy/debt expert",name:e?e+":CrossSell_Bankruptcy":"CrossSell_Bankruptcy",id:e?e+":CrossSell_Bankruptcy":"CrossSell_Bankruptcy",if:'$getVal($get(form), "Type_Of_Legal_Problem") != "Bankruptcy" && ($getVal($get(form), "Degree_Of_Interest") == "Absolutely Can\'t Afford" || $getVal($get(form), "Degree_Of_Interest") == "Maybe" || $getVal($get(form), "Degree_Of_Interest") == "Probably")',validation:null,helpClass:"!t-text-sm"}).legendClass="legend-left required",t.fieldsetClass="$reset side-by-side",t.optionsClass="t-pl-1",t.innerClass="t-flex t-items-center",t.wrapperClass="t-mb-3",i(t);var t},$=(t,a,r={})=>(a?h:y)(e({label:a?r.label:"Blood Alcohol Content Measured by Test:",name:t?t+":Blood_Alcohol_Content_Test":"Blood_Alcohol_Content_Test",options:["No Test","0.00% - 0.04%","0.05% - 0.08%","0.09% - 0.12%","0.13% - 0.16%","0.17% - 0.20%","More than 0.20%","Don't know"]},r)),A=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Cause of Injury:",name:t?t+":Cause_Of_Injury":"Cause_Of_Injury",options:["Traumatic Physical Injury (Accident)","Repeated Trauma Injury","Mental Injury","Occupational Disease","Not Sure"]},r)),O=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"With Whom Do the Children Currently Live?",name:t?t+":Child_Home":"Child_Home",options:["Mother","Father","Grandparents","Other"]},r)),E=(t,a,r={})=>(a?p:y)(e({label:a?r.label:"Who is the Primary Caregiver?",name:t?t+":Child_Primary_Caregiver":"Child_Primary_Caregiver",options:["Mother","Father","Other"]},r)),W=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Your Relationship to Child(ren):",name:t?t+":Child_Relationship":"Child_Relationship",options:["Father","Mother","Grandparent","Aunt/Uncle","Other"]},r)),j=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Status of Claim:",name:t?t+":Claim_Status":"Claim_Status",options:["No action taken yet","Demand for compensation made","Lawsuit filed","Other"]},r)),M=(t,a,r)=>(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t)))(e({name:t?t+":Comments":"Comments",label:"Please briefly describe your situation in a few words:",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},r)),B=(t,a,r={})=>(a?o:y)(e({name:t?t+":Degree_Of_Interest":"Degree_Of_Interest",id:t?t+":Degree_Of_Interest":"Degree_Of_Interest",label:a?r.label:"How Likely Are You to Pay if Your Issue Could be Resolved?",help:a?r.help:"No payment necessary to speak with lawyers.",options:["Definitely","Probably","Maybe","Absolutely Can't Afford"]},r)),N=(t,a,r={})=>B(t,a,e(r,{help:"No payment necessary to speak with lawyers."})),F=(t,a,r={})=>(a?m:u)(e({name:t?t+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:a?r.label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"},r)),q=(t,a,r={})=>(a?m:u)(e({name:t?t+":Disability_Work_History":"Disability_Work_History",label:a?r.label:"Have You Had a Full-Time Job Within the Past 5 Years?"},r)),U=(t,a,r={})=>(a?m:u)(e({name:t?t+":Doctor_Treatment":"Doctor_Treatment",label:a?r.label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"},r)),Y=(t,a,r={})=>(a?o:y)(e({name:t?t+":Estate_Legal_Services_Needed":"Estate_Legal_Services_Needed",label:a?r.label:"Legal Services Needed for Your Estate:",options:["Charitable Giving","Contested Wills","Drafting Wills or Trust","Estate Administration","Asset Protection","Other"]},r)),R=(t,a,r={})=>(a?m:u)(e({label:a?r.label:"Already Working with An Attorney?",name:t?t+":Have_Attorney":"Have_Attorney"},r)),H=(t,a,r={})=>(a?m:u)(e({name:t?t+":Have_Children":"Have_Children",label:a?r.label:"Do You Have Children?"},r)),Q=(t,a,r={})=>(a?I:v)(e({label:a?r.label:"Date of Incident:",name:t?t+":Incident_Date":"Incident_Date"},r)),K=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"The Other Party is a:",name:t?t+":Lawsuit_Other_Party":"Lawsuit_Other_Party",options:["Individual","Small Business","Large Corporation","Government Entity"]},r)),V=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"How Will You Pay for Legal Fees if You Hire a Lawyer?",help:a?r.help:"No payment necessary to start a consultation.",name:t?t+":Lawyer_Payment_Method":"Lawyer_Payment_Method",options:a?{Cash:"Cash","Credit Card":"Credit Card",Family:"Family or Friend",Other:"Other"}:["Cash","Check","Credit Card","Friend","Family","Other"],fieldsetClass:a?"$reset t-flex t-flex-col t-items-center":void 0},r)),z=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Marital Status:",name:t?t+":Marital_Status":"Marital_Status",options:["Unmarried, Living Together","Unmarried, Do Not Live Together","Married, Living Together","Separated","Divorced","Other"]},r)),G=(t,a,r={})=>(a?h:y)(e({label:a?r.label:"Injuries from Medical Malpractice:",name:t?t+":Medical_Malpractice_Injuries":"Medical_Malpractice_Injuries",options:["No Injury","Minor Injury","Disfigurement or cosmetic injury","Short term loss of physical ability","Long term loss of physical injury","Possibility of future harm","Death of Patient"]},r)),Z=(t,a,r={})=>(a?o:d)(e({label:a?r.label:"Select the issue:",name:t?t+":Type_Of_Legal_Problem_Display":"Type_Of_Legal_Problem_Display",options:["Medical Malpractice","Attorney Malpractice","Other Malpractice Issues"]},r)),J=(t,a,r={})=>(a?m:u)(e({name:t?t+":Pending_Charges":"Pending_Charges",label:a?r.label:"Do you currently have any pending charges?"},r)),X=(t,a,r={})=>(a?o:c)(e({label:a?r.label:"Primary Injury:",name:t?t+":Primary_Injury":"Primary_Injury",options:["Anxiety","Back or Neck Pain","Broken Bones","Cuts and Bruises","Headaches","Memory Loss","Loss of Limb","Not Sure or Other"]},r)),ee=(t,a,r={})=>(a?m:u)(e({name:t?t+":Prior_Alcohol_Offenses":"Prior_Alcohol_Offenses",label:a?r.label:"Any Prior Alcohol Related Offenses?"},r)),te=(t,a,r={})=>(a?m:u)(e({name:t?t+":Police_Report_Filed":"Police_Report_Filed",label:a?r.label:"Was a Police Report Filed?"},r)),ae=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"What is Your Role in this Matter?",name:t?t+":Role_In_Matter_Probate":"Role_In_Matter_Probate",options:["Preparing My Will","Executor","Heir","Other"]},r)),re=(t,a,r={})=>(a?m:u)(e({name:t?t+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:a?r.label:"Are You Currently Receiving Social Security Disability Benefits?"},r)),ie=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Type of Alcohol Test Performed?",name:t?t+":Type_Of_Alcohol_Test":"Type_Of_Alcohol_Test",options:["No Test","Refused Test","Breath Test","Blood Test","Urine Test","Don't Know"]},r)),ne=(t,a,r={})=>(a?s:n)(e({label:a?r.label:"Type of Assets:",name:t?t+":Type_Of_Assets":"Type_Of_Assets",options:["Business Interests","Cash","Life Insurance Policies","Pensions/Retirement","Personal Possessions","Property","Stock/Bonds"]},r)),se=(t,a,r={})=>(a?o:y)(e({label:a?r.label:"Value of Your Assets?",name:t?t+":Value_Of_Assets":"Value_Of_Assets",options:["Less than 50K","50K to 100K","100K to 250K","250K to 500K","500K to 1M","More than 1M"]},r)),le=(t,a)=>e({$cmp:"FormKit",props:{type:"group",key:t,id:t,name:t}},a),oe=(e,t)=>le("FileLawsuitQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "File a Lawsuit"',children:[R(t),K(t),N(t)]}),de=(e,t)=>le("NotSureOrOtherQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Not Sure or Other"',children:[R(t),N(t)]}),ce="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",ue="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",pe=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,me=e=>{if(pe(e))return e;for(var t=e.children.length-1;t>=0;t--){if("string"==typeof e.children)continue;const a=e.children[t];if(pe(a))return a;const r=me(a);if(r)return r}return null},fe={$el:"div",if:"$activeStep === $lastStep()",attrs:{class:"t-flex t-justify-center t-items-center t-text-sm t-text-gray-500"},children:[{$el:"img",attrs:{loading:"lazy",alt:"",style:{border:0},width:"25",height:"25",src:"https://d27hmee62k45vz.cloudfront.net/lock_icon_1.jpeg"}},{$el:"span",children:"Secure & Encrypted",attrs:{class:"t-pl-2 t-pt-1 t-font-medium"}}]};function ye(t){return e(fe,t)}function he(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function be(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-4 t-pt-0 t-px-1"}}}function _e(e){return{$el:"h5",children:e.subheadline||"Tell us about your situation:",attrs:{class:"t-flex t-justify-center t-text-dark t-text-center !t-text-lg t-font-semibold t-pb-4 t-pt-0 t-px-3"}}}function ge(e){return{$el:"h5",children:e.subheadline||"",attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-normal t-text-dark t-pb-5 t-pt-0 t-px-1 "+(e.subheadlineClass||"")}}}function Ce(e){return function(e){return{$el:"h3",children:e.headline||"Additional Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}({headline:e.headline||"Additional Case Details",headlineClass:e.headlineClass})}function ve(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function Ie(e){return{$el:"h3",children:e.headline||"Do any of the following situations apply?",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function we(e){return{$el:"h3",children:e.headline||a,attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-3 t-pt-0 t-px-1 "+(e.headlineClass||"")+" f-contact-info-headline"}}}function xe(e){return{$el:"h5",children:e.subheadline||r,attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-7 t-pt-0 t-px-3 "+(e.subheadlineClass||"")+" f-contact-info-subheadline"}}}const Pe="(function() {\n if (window.xxTrustedFormLoaded) {\n return\n }\n var vid = '';\n if (typeof window.zar !== 'undefined') {\n vid = window.zar.getVID();\n }\n window.xxTrustedFormLoaded = true;\n var sandbox = document.location.hostname.indexOf('localhost') > -1 ? 'true' : 'false'\n var tf = document.createElement('script');\n tf.type = 'text/javascript'; tf.async = true;\n tf.src = (\"https:\" == document.location.protocol ? 'https' : 'http') + \"://api.trustedform.com/trustedform.js?field=xxTrustedFormCertUrl&identifier=\" + vid + \"&ping_field=xxTrustedFormPingUrl&provideReferrer=false&invert_field_sensitivity=true&sandbox=\" + sandbox + \"&l=\" + new Date().getTime() + Math.random();\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(tf, s);\n})();";const Se=(e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}});function De(t,a,r={}){const{nextOnEnter:i=!0,nextOnInput:n=!1,stepKey:s,nextStepMap:l,triggerRedirectMap:o,autoFocus:d}=r;if(a&&a.length&&(i||n)){const e=me(a[a.length-1]);e&&!0===i&&(e.onKeypress=ce),e&&!0===n&&(e.onInput=ue)}return e(Se(t,s),{children:[{$formkit:"group",id:t,name:t,nextStepMap:l,triggerRedirectMap:o,autoFocus:d,children:a}]})}const Te={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};function ke(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const Le={};const $e={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const Ae=[{$formkit:"hidden",name:"vertical",value:"Legal"},{$formkit:"hidden",name:"TCPA_Language",value:"$meta.tcpaLanguage"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],Oe={"*":"https://listings.ziplawyer.com/api/v1/redirect?zone_id=4&vertical=Legal&category=${properties.Type_Of_Legal_Problem}&Degree_Of_Interest=${properties.Degree_Of_Interest}&zip_code=${properties.Zip}&sub_id=${properties.vid}"};const Ee={Civil_Defense:{Yes:{Type_Of_Legal_Problem:"Defend a Lawsuit"},No:{Type_Of_Legal_Problem:"File a Lawsuit"}},businessServicesOverrideMap:{Business_Services_Display:{"Business Formation":{Business_Services:"Business Formation"},Contracts:{Business_Services:"Contracts"},"Insurance and Liability":{Business_Services:"Insurance and Liability"},"Mergers and Acquisition":{Business_Services:"Mergers and Acquisition"},"Regulatory Compliance":{Business_Services:"Regulatory Compliance"},"Employee Dispute":{Business_Services:"Employee Dispute"},"Advice and Consulting":{Business_Services:"Other"},Other:{Business_Services:"Other"}}},Type_Of_Legal_Problem_Display:{Copyrights:{Type_Of_Legal_Problem:"Copyrights and Trademarks"},Trademarks:{Type_Of_Legal_Problem:"Copyrights and Trademarks"},Patents:{Type_Of_Legal_Problem:"Patents and Intellectual Property"},"Business Lawyers":{Type_Of_Legal_Problem:"Business Lawyers"},"Business Consulting":{Type_Of_Legal_Problem:"Business Lawyers"},"Not Sure or Other":{Type_Of_Legal_Problem:"Not Sure or Other"},"Auto Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Dog Bite":{Type_Of_Legal_Problem:"Personal Injury"},"Slip and Fall":{Type_Of_Legal_Problem:"Personal Injury"},"Workplace Injury":{Type_Of_Legal_Problem:"Workers Compensation"},"Trucking Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Motorcycle Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Other Accidents or Injuries":{Type_Of_Legal_Problem:"Personal Injury"},"Automobile Accident":{Type_Of_Legal_Problem:"Auto and Car Accidents"},"Contract Disputes":{Type_Of_Legal_Problem:"Business Lawyers"},"Defamation and Slander":{Type_Of_Legal_Problem:"File a Lawsuit"},"Dog Bite":{Type_Of_Legal_Problem:"Personal Injury"},"Employment and Workplace":{Type_Of_Legal_Problem:"Employment and Workplace"},Fraud:{Type_Of_Legal_Problem:"Consumer Lawyers"},"Medical Malpractice":{Type_Of_Legal_Problem:"Medical Malpractice"},"Personal Injury":{Type_Of_Legal_Problem:"Personal Injury"},"Property Damage":{Type_Of_Legal_Problem:"Property Damage"},"Small Claims":{Type_Of_Legal_Problem:"File a Lawsuit"},"Real Estate":{Type_Of_Legal_Problem:"Real Estate"},"Other (describe on next page)":{Type_Of_Legal_Problem:"Not Sure or Other"},"Contract Creation":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Enforcement":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Cancellation":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Contract Fraud":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Breach of Contract":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Other Contract Issues":{Type_Of_Legal_Problem:"Business Lawyers",Business_Services:"Contracts"},"Criminal Defense":{Type_Of_Legal_Problem:"Criminal and Felony"},"Victim of a Crime":{Type_Of_Legal_Problem:"Victim of a Crime"},"DUI and DWI":{Type_Of_Legal_Problem:"DUI and DWI"},Expungement:{Type_Of_Legal_Problem:"Expungement"},Harassment:{Type_Of_Legal_Problem:"Criminal and Felony"},"Not Sure or Other":{Type_Of_Legal_Problem:"Not Sure or Other"},"Workplace Harassment":{Type_Of_Legal_Problem:"Workplace Harassment"},"Workplace Discrimination":{Type_Of_Legal_Problem:"Workplace Discrimination"},"Wrongful Termination":{Type_Of_Legal_Problem:"Wrongful Termination"},"Payment Disputes":{Type_Of_Legal_Problem:"Employment and Workplace"},"Workers Compensation":{Type_Of_Legal_Problem:"Workers Compensation"},Unemployment:{Type_Of_Legal_Problem:"Unemployment"},"Other Workplace Issues":{Type_Of_Legal_Problem:"Employment and Workplace"},"Attorney Malpractice":{Type_Of_Legal_Problem:"File a Lawsuit"},"Other Malpractice Issues":{Type_Of_Legal_Problem:"File a Lawsuit"},"Vehicle Repossession":{Type_Of_Legal_Problem:"Bankruptcy"},"Property Repossession":{Type_Of_Legal_Problem:"Bankruptcy"},"Other Repossession Issues":{Type_Of_Legal_Problem:"Not Sure or Other"},"Contracts and Agreements":{Type_Of_Legal_Problem:"Real Estate"},"Deeds, Liens, and Titles":{Type_Of_Legal_Problem:"Real Estate"},Foreclosure:{Type_Of_Legal_Problem:"Foreclosure"},Insurance:{Type_Of_Legal_Problem:"Insurance"},"Landlord and Tenant":{Type_Of_Legal_Problem:"Landlord and Tenant"},"Loans and Mortgages":{Type_Of_Legal_Problem:"Real Estate"},"Wills, Trusts, and Estates":{Type_Of_Legal_Problem:"Wills and Trusts"},"Property Damage":{Type_Of_Legal_Problem:"Property Damage"},"Other Real Estate Issues":{Type_Of_Legal_Problem:"Real Estate"}}},We={Adoption:'Example: "I need help with adoption forms"',"Asbestos and Mesothelioma":'Example: "I was exposed to asbestos at work and would like to file a claim"',"Auto and Car Accidents":'Example: "A truck crashed into my car on the highway" or "I\'ve been involved in a hit and run accident"',Bankruptcy:'Example: "I need help filing for bankruptcy"',"Birth Certificate and Name Change":'Example: "Just married and would like to change my last name"',"Business Lawyers":'Example: "I need help incorporating a business" or "I would like a legal contract reviewed"',"Child Custody and Support":'Example: "Need help getting custody" or "Issues with child support payments"',"Child Custody":'Example: "Need help getting custody"',"Child Support":'Example: "Issues with child support payments"',"Civil Rights and Discrimination":'Example: "Police brutality" or "Coworker keeps harassing me"',"Civil Lawsuit":'Example: "A contractor took my money and never completed the job" or "I am being sued by a neighbor"',"File a Lawsuit":'Example: "A contractor took my money and never completed the job"',"Defend a Lawsuit":'Example: "I am being sued by a neighbor"',"Consumer Lawyers":'Example: "Someone committed fraud against me" or "A contractor took my money and never completed the job"',"Copyrights and Trademarks":'Example: "I would like to register a trademark or copyright a name"',"Criminal and Felony":'Example: "I was arrested for DUI and need legal defense" or "I am being charged with assault"',"Debt and Collections":'Example: "I would like to consolidate my debt" or "A collection agency is harassing me"',"Divorce and Separation":'Example: "I would like to file for an uncontested divorce"',"DUI and DWI":'Example: "I was arrested for DUI and need legal defense"',"Elder Law":'Example: "I would like help with Estate Planning" or "I need help with a guardianship"',"Employment and Workplace":'Example: "I was injured while on the job" or "My company is discriminating against me"',Expungement:'Example: "I would like to file for an expungement and clear my record"',"Family Issues":'Example: "I need help with guardianship" or "I need a simple will created"',Foreclosure:'Example: "I need help to avoid foreclosure on my house"',Guardianship:'Example: "I need help with guardianship documents"',"Harassment and Discrimination":'Example: "I am being discriminated at work" or "My neighbor is harassing me"',"Sexual Harassment":'Example: "I am being sexually harassed by a coworker"',"Workplace Harassment":'Example: "My coworker is being aggressive towards me"',"Non-Workplace Harassment":'Example: "My neighbor is harassing me"',"Workplace Discrimination":'Example: "I am being discriminated at work based on my age"',"Non-Workplace Discrimination":'Example: "I am being discriminated against by a local official"',"Identity Theft":'Example: "Someone stole my identity and I need help fixing the issue"',"Immigration and Visas":'Example: "I need help filing for a visa" or "Help with a green card"',Insurance:'Example: "I need help filing an insurance claim for damage to my house"',"Landlord and Tenant":'Example: "I need help to fight an eviction" or "I would like a lawyer to review a rental contract"',"Lemon Law":'Example: "I purchased a new vehicle that broke down already and seller will not assist"',"Long Term Disability":'Example: "I was injured on the job and would like to file for benefits" or "I need help filing for disability benefits"',"Medical Malpractice":'Example: "A doctor performed surgery on the wrong limb and I would like to file a lawsuit"',"Patents and Intellectual Property":'Example: "I would like to file for a patent" or "I need to copyright a name"',"Personal Injury":'Example: "I was bit by the neighbor\'s dog" or "I fell in the icy grocery store parking lot"',"Power of Attorney":'Example: "I need help with a limited or general power of attorney"',"Probate and Estates":'Example: "I need help with planning for my estate" or "A family member passed without a will in place"',"Product Liability":'Example: "My car battery caught on fire" or "I purchased a faulty product"',"Property Damage":'Example: "The neighbor\'s tree fell on my fence" or "My car was hit in the parking lot"',"Real Estate":'Example: "I need help with a quitclaim deed" or "I need a lawyer to review a purchase and sales agreement"',"Social Security Disability and Insurance":'Example: "I would like help filing for disability benefits" or "I\'ve been denied for SSDI and would like to appeal"',"Tax and IRS":'Example: "I need help fighting an IRS tax claim" or "I need audit defense"',"Traffic and Tickets":'Example: "I need help reinstating a supsended license" or "I would like to fight a traffic ticket"',Unemployment:'Example: "I need help filing for unemployment benefits"',"Victim of a Crime":'Example: "I was assaulted in the store" or "I am being discriminated against at work"',"Wills and Trusts":'Example: "I need a simple will created" or "I would like guidance on creating a trust fund"',"Workers Compensation":'Example: "I was injured at work and would like to file for workers compensation benefits"',"Wrongful Death":'Example: "A family member was killed on the job and we need legal representation"',"Wrongful Termination":'Example: "I was fired by my employer without cause"',"Not Sure or Other":'Example: "I was involved in a car accident" or "I need help setting up power of attorney"'},je={},Me={Adoption:"You may benefit from speaking with an adoption professional. Please verify your contact information.","Auto and Car Accidents":"You may benefit from speaking with an accident professional. Please verify your contact information.",Bankruptcy:"You may benefit from speaking with a bankruptcy professional. Please verify your contact information.","Copyrights and Trademarks":"You may benefit from speaking with a copyright and trademark professional. Please verify your contact information.","Divorce and Separation":"You may benefit from speaking with a divorce professional. Please verify your contact information.","DUI and DWI":"You may benefit from speaking with a DUI professional. Please verify your contact information.","Elder Law":"You may benefit from speaking with an elder law professional. Please verify your contact information.",Foreclosure:"You may benefit from speaking with a foreclosure professional. Please verify your contact information.",Guardianship:"You may benefit from speaking with a guardianship professional. Please verify your contact information.","Immigration and Visas":"You may benefit from speaking with a immigration professional. Please verify your contact information.","Landlord and Tenant":"You may benefit from speaking with a landlord and tenant legal professional. Please verify your contact information.","Long Term Disability":"You may benefit from speaking with a disability legal professional. Please verify your contact information.","Medical Malpractice":"You may benefit from speaking with a malpractice professional. Please verify your contact information.","Patents and Intellectual Property":"You may benefit from speaking with a patent professional. Please verify your contact information.","Personal Injury":"You may benefit from speaking with a personal injury professional. Please verify your contact information.","Probate and Estates":"You may benefit from speaking with a probate and estate professional. Please verify your contact information.","Real Estate":"You may benefit from speaking with a real estate professional. Please verify your contact information.","Social Security Disability and Insurance":"You may benefit from speaking with an SSDI professional. Please verify your contact information.","Tax and IRS":"You may benefit from speaking with a tax professional. Please verify your contact information.",Unemployment:"You may benefit from speaking with an unemployment professional. Please verify your contact information.","Workers Compensation":"You may benefit from speaking with a workers compensation professional. Please verify your contact information."},Be={"Auto and Car Accidents":{"Social Security Disability and Insurance":"Interest in Disability Benefits","Wills and Trusts":"Need a Will or Trust","Workers Compensation":"Workplace Injury","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Personal Injury":{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Workers Compensation":{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"DUI and DWI":{"Personal Injury":"Personal or Workplace Injury","Wills and Trusts":"Need a Will or Trust","Social Security Disability and Insurance":"Interest in Disability Benefits","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Wills and Trusts":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Probate and Estates":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Power of Attorney":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Long Term Disability":{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"Social Security Disability and Insurance":{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},"*":{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Social Security Disability and Insurance":"Interest in Disability Benefits"}},Ne=function(a=null){let r=We,i=je,n=Me;return a&&(r=ke(We,a),i=ke(je,a),n=ke(Me,a)),{type:"meta",data:e(Le,{tcpaLanguage:"By checking this box, I a) agree to the Terms of Use, and b) consent to be contacted by lawyers, lawyer networks, and partners of this website using live, autodialed, pre-recorded, or artificial voice calls, as well as text messages. Your consent is not required as a condition of purchasing any goods or services. To submit this request without this consent, call 878-213-4937.",defaultCommentsPlaceholder:t,commentsPlaceholders:r,defaultFinalHeadline:"Submit Your Case",finalHeadlines:i,defaultFinalSubHeadline:"You may benefit from speaking with a legal professional. Please verify your contact information.",finalSubHeadlines:n})}}();Ne.data.dynamicSchema=[function(e={}){return De("TOLPQuestions",[he(e),le("MedicalMalpracticeQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Medical Malpractice"',children:[R(a),Q(a),j(a),U(a),G(a),N(a)]}),oe(),de()],e);var t,a}(),function(e={}){return De("commentsWithBankruptcy",[Ce(e),M(e.scope,0,{label:void 0===e.label?"Please briefly describe your legal issue in a few words:":e.label,placeholder:e.placeholder||t,inputClass:void 0===e.inputClass?"!t-h-32":e.inputClass}),L(),{$el:"div",if:"$get(CrossSell_Bankruptcy).value == true",children:[M("CrossSell:Bankruptcy",0,{label:"Bankruptcy or debt details:",placeholder:"Please describe your bankrtupcy or debt situation in a few words...",inputClass:"!t-h-16"})]}],{nextOnEnter:!1})}({placeholder:'Example: "My doctor or attorney was negligent in providing care."'}),function(e={}){return e.nextOnInput=!1,e.stepKey="$get(Type_Of_Legal_Problem).value",De("legalCrossSells",[Ie(e),n({id:"Legal_CrossSells",name:"Legal_CrossSells",help:'Just hit "Next" if none apply',helpClass:"t-text-center !t-text-sm",validation:null,options:'$getCrossSellOptions($get(form), $getVal($get(form), "Type_Of_Legal_Problem"))'})],e)}({headlineClass:"!t-text-dark",nextStepMap:{values:{Legal_CrossSells:{"Auto and Car Accidents":["autoAndCarAccidentCrossSellQuestions"],"Personal Injury":["personalInjuryCrossSellQuestions"],"Workers Compensation":["workersCompensationCrossSellQuestions"],"DUI and DWI":["duiAndDWICrossSellQuestions"],"Long Term Disability":["longTermDisabilityCrossSellQuestions"],"Social Security Disability and Insurance":["ssdiCrossSellQuestions"],Bankruptcy:["bankruptcyCrossSellQuestions"],"Power of Attorney":["powerOfAttorneyCrossSellQuestions"],"Wills and Trusts":["willsAndTrustsCrossSellQuestions"],"Divorce and Separation":["divorceAndSeparationCrossSellQuestions"],"Child Custody":["childCustodyCrossSellQuestions"]},"*":["firstAndLast","contactInfo"]},appendSteps:["firstAndLast","contactInfo"],matchesAllowed:1}}),function(e={}){return De("autoAndCarAccidentCrossSellQuestions",[be({headline:"You May Be Entitled To Compensation"}),_e({subheadline:"Tell us about your accident:"}),(t="true",a="CrossSell:Auto_and_Car_Accidents",le("AutoAndCarAccidentsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Auto and Car Accidents"',children:[R(a),Q(a),k(a),X(a),U(a),te(a)]})),M("CrossSell:Auto_and_Car_Accidents",0,{label:"Accident Description:",placeholder:"Please describe your accident in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("personalInjuryCrossSellQuestions",[be({headline:"You May Be Entitled To Compensation"}),_e({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Personal_Injury",le("PersonalInjuryQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Personal Injury"',children:[R(a),Q(a),j(a),k(a),X(a),U(a)]})),M("CrossSell:Personal_Injury",0,{label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("workersCompensationCrossSellQuestions",[be({headline:"You May Be Entitled To Benefits"}),_e({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Workers_Compensation",le("WorkersCompensationQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Workers Compensation"',children:[R(a),Q(a),j(a),X(a),A(a),U(a)]})),M("CrossSell:Workers_Compensation",0,{label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("duiAndDWICrossSellQuestions",[be({headline:"About Your DUI/DWI"}),(t="true",a="CrossSell:DUI_and_DWI",le("DUIAndDWIQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "DUI and DWI"',children:[R(a),Q(a),ee(a),ie(a),$(a),J(a),N(a)]})),M("CrossSell:DUI_and_DWI",0,{label:"Incident Description:",placeholder:"Please describe your incident in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("ssdiCrossSellQuestions",[be({headline:"You May Be Entitled To Benefits"}),_e({subheadline:"Tell us about your disability:"}),(t="true",a="CrossSell:Social_Security_Disability_and_Insurance",le("SocialSecurityDisabilityAndInsuranceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Social Security Disability and Insurance"',children:[R(a),T(a),F(a),q(a),re(a),U(a)]})),M("CrossSell:Social_Security_Disability_and_Insurance",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("powerOfAttorneyCrossSellQuestions",[be({headline:"Power of Attorney Information"}),(t="true",a="CrossSell:Power_of_Attorney",le("PowerofAttorneyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Power of Attorney"',children:[R(a),N(a)]})),M("CrossSell:Power_of_Attorney",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("willsAndTrustsCrossSellQuestions",[be({headline:"Will or Trust Information"}),(t="true",a="CrossSell:Wills_and_Trusts",le("WillsAndTrustsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Wills and Trusts"',children:[R(a),se(a),ne(a),ae(a),Y(a),N(a)]})),M("CrossSell:Wills_and_Trusts",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("divorceAndSeparationCrossSellQuestions",[be({headline:"Divorce or Separation Information"}),(t="true",a="CrossSell:Divorce_and_Separation",le("DivorceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Divorce and Separation"',children:[R(a),z(a),H(a),B(a),V(a)]})),M("CrossSell:Divorce_and_Separation",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("childCustodyCrossSellQuestions",[be({headline:"Child Custody Information"}),(t="true",a="CrossSell:Child_Custody",le("ChildCustodyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Child Custody"',children:[R(a),W(a),O(a),E(a),B(a),V(a)]})),M("CrossSell:Child_Custody",0,{label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"})],e);var t,a}(),function(e={}){return De("firstAndLast",[ve({headline:e.headline??"Who is looking for help?",headlineClass:e.headlineClass}),ge({subheadline:e.subheadline??"Note: we never share info without consent",subheadlineClass:"!t-text-sm !t-text-gray-500"}),x(e.scope),P(e.scope)],e)}({headlineClass:"!t-text-dark"})];const Fe=[Ne,e($e,qe),{$cmp:"FormKit",props:function(t){const a=e(Te,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"malpractice",redirectMap:function(t){return e(Oe,t)}(),valueOverrideMap:Ee,crossSellOptionMap:Be}),children:[function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "+(e.headlineClass||"")+" f-first-headline"}}}(t),t)}({children:'$urlParam("hl", "Get Justice for Malpractice!")',if:"$activeStep === $firstStep()"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "+(e.subheadlineClass||"")+" f-first-subheadline"}}}(t),t)}({children:'$urlParam("shl", "Our Service is Fast, Easy, and Free")',if:"$activeStep === $firstStep()"}),...Ae,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return De("malpracticeTOLPAndZip",[{$formkit:"hidden",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",value:"Medical Malpractice"},Z(e.scope),D(e.scope)],e)}({nextStepMap:{values:{"*":["TOLPQuestions","commentsWithBankruptcy","legalCrossSells","firstAndLast","contactInfo"]}}}),function(e="Type_Of_Legal_Problem"){return{$cmp:"FormKitSchema",if:"$get("+e+").value",props:{schema:"$meta.dynamicSchema",data:"$buildData($meta)"}}}(),function(e={}){return De("contactInfo",[we(e),xe(e),{$el:"script",if:"$activeStep === $lastStep()",children:Pe},w(e.scope),S(e.scope),(t=e.scope,{$formkit:"checkbox",label:"$meta.tcpaLanguage",__raw__sectionsSchema:{label:{attrs:{innerHTML:"$label"}}},name:t?t+":TCPA_Opt_In":"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{label:"t-text-xs t-text-slate-500 t-font-normal !t-leading-[0.9rem]"}}),ye()],{nextOnEnter:!1});var t}(),((e={})=>({$el:"div",attrs:{class:{if:"$activeStep === $firstStep()",then:"step-nav !t-justify-center sm:!t-justify-between",else:"step-nav !t-justify-between"}},children:[{$formkit:"button",name:"back_button",onClick:"$setPreviousStep($prevStepFunc($get(form)))",children:"Back",outerClass:{if:"$activeStep === $firstStep()",then:"t-hidden sm:t-block",else:""},style:{if:"$activeStep === $firstStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" f-navigation-input"}},{$formkit:"button",name:"next_button",onClick:"$setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form)))",children:{if:"$activeStep === $firstStep()",then:e.startText||"Start",else:"Next"},outerClass:{if:"$activeStep === $lastStep()",then:"t-hidden",else:""},style:{if:"$activeStep === $lastStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" f-navigation-input"}},{$formkit:"submit",name:"submit_button",label:e.submitLabel||"Submit",if:"$activeStep === $lastStep()",style:{if:"$activeStep !== $lastStep()",then:"display: none;"},classes:{input:(e.inputClass||"")+" !t-ml-2 sm:!t-ml-auto f-navigation-input"}}]}))(),{$el:"pre",if:'$urlParam("fdbg", "") == 1',children:[{$el:"pre",children:"$stringify( $get(form).value )",attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["activeStep: ","$activeStep"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepHistory: ","$stepHistory"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepQueue: ","$stepQueue"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["steps: ","$stepKeys()"],attrs:{class:"t-text-xs",style:"overflow: scroll"}}]}]}]}];var qe;return Fe}();
|
|
@@ -2341,10 +2341,10 @@ const patentsAndIPTOLPDisplayOverrideMap = {
|
|
|
2341
2341
|
},
|
|
2342
2342
|
// Malpractice
|
|
2343
2343
|
"Attorney Malpractice": {
|
|
2344
|
-
Type_Of_Legal_Problem: "
|
|
2344
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
2345
2345
|
},
|
|
2346
2346
|
"Other Malpractice Issues": {
|
|
2347
|
-
Type_Of_Legal_Problem: "
|
|
2347
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
2348
2348
|
},
|
|
2349
2349
|
// Repossession
|
|
2350
2350
|
"Vehicle Repossession": {
|
|
@@ -3680,10 +3680,10 @@ const legalAllValueOverrideMap = {
|
|
|
3680
3680
|
},
|
|
3681
3681
|
// Malpractice
|
|
3682
3682
|
"Attorney Malpractice": {
|
|
3683
|
-
Type_Of_Legal_Problem: "
|
|
3683
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
3684
3684
|
},
|
|
3685
3685
|
"Other Malpractice Issues": {
|
|
3686
|
-
Type_Of_Legal_Problem: "
|
|
3686
|
+
Type_Of_Legal_Problem: "File a Lawsuit",
|
|
3687
3687
|
},
|
|
3688
3688
|
// Repossession
|
|
3689
3689
|
"Vehicle Repossession": {
|