bhl-forms 0.11.14 → 0.11.16
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/civilLawsuit.es.js +238 -595
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/civilLawsuit.json +1 -1
- package/dist/forms/civilLawsuit1to1.es.js +389 -0
- package/dist/forms/civilLawsuit1to1.iife.js +1 -1
- package/dist/forms/civilLawsuit1to1.json +1 -1
- package/dist/forms/ssdi.es.js +146 -129
- package/dist/forms/ssdi.iife.js +1 -1
- package/dist/forms/ssdi.json +1 -1
- package/package.json +1 -1
package/dist/forms/ssdi.es.js
CHANGED
|
@@ -27,29 +27,6 @@ const ensureIds = (cfg) => {
|
|
|
27
27
|
return cfg
|
|
28
28
|
};
|
|
29
29
|
|
|
30
|
-
const checkbox = (updates) => {
|
|
31
|
-
ensureIds(updates);
|
|
32
|
-
return merge(
|
|
33
|
-
{
|
|
34
|
-
$formkit: "checkbox",
|
|
35
|
-
validation: "required",
|
|
36
|
-
validationMessages: {
|
|
37
|
-
required: "Field is required",
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
updates
|
|
41
|
-
)
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
const sbsCheckbox = (updates) => {
|
|
45
|
-
updates.legendClass = "legend-left required";
|
|
46
|
-
updates.fieldsetClass = "$reset side-by-side";
|
|
47
|
-
updates.optionsClass = "t-pl-1";
|
|
48
|
-
updates.innerClass = "t-flex t-items-center";
|
|
49
|
-
updates.wrapperClass = "t-mb-3";
|
|
50
|
-
return checkbox(updates)
|
|
51
|
-
};
|
|
52
|
-
|
|
53
30
|
const radio = (updates) => {
|
|
54
31
|
ensureIds(updates);
|
|
55
32
|
return merge(
|
|
@@ -147,14 +124,11 @@ const textArea = (updates) => {
|
|
|
147
124
|
)
|
|
148
125
|
};
|
|
149
126
|
|
|
150
|
-
const
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
return func({
|
|
154
|
-
$formkit: "email",
|
|
127
|
+
const emailFL = (scope, updates = {}) => {
|
|
128
|
+
return text({
|
|
129
|
+
$formkit: "FloatingLabelText",
|
|
155
130
|
name: scope ? scope + ":" + "Email" : "Email",
|
|
156
|
-
|
|
157
|
-
placeholder: "email@domain.com",
|
|
131
|
+
placeholder: "Email Address",
|
|
158
132
|
autocomplete: "email",
|
|
159
133
|
"data-tf-sensitive": "false",
|
|
160
134
|
validation: "required|email",
|
|
@@ -162,59 +136,72 @@ const email = (scope, vertical, updates = {}) => {
|
|
|
162
136
|
required: "Email is required",
|
|
163
137
|
email: "Invalid Email",
|
|
164
138
|
},
|
|
139
|
+
inputClass: "t-text-center",
|
|
140
|
+
wrapperClass: "t-flex t-justify-center",
|
|
165
141
|
...updates,
|
|
166
142
|
})
|
|
167
143
|
};
|
|
168
144
|
|
|
169
|
-
const
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
return func({
|
|
173
|
-
label,
|
|
145
|
+
const firstNameFL = (scope, updates = {}) => {
|
|
146
|
+
return text({
|
|
147
|
+
$formkit: "FloatingLabelText",
|
|
174
148
|
placeholder: "First Name",
|
|
175
149
|
name: scope ? scope + ":" + "First_Name" : "First_Name",
|
|
176
150
|
autocomplete: "given-name",
|
|
177
151
|
validationMessages: {
|
|
178
152
|
required: "First Name is required",
|
|
179
153
|
},
|
|
154
|
+
inputClass: "t-text-center",
|
|
180
155
|
...updates,
|
|
181
156
|
})
|
|
182
157
|
};
|
|
183
158
|
|
|
184
|
-
const
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
return func({
|
|
188
|
-
label,
|
|
159
|
+
const lastNameFL = (scope, updates = {}) => {
|
|
160
|
+
return text({
|
|
161
|
+
$formkit: "FloatingLabelText",
|
|
189
162
|
placeholder: "Last Name",
|
|
190
163
|
name: scope ? scope + ":" + "Last_Name" : "Last_Name",
|
|
191
164
|
autocomplete: "family-name",
|
|
192
165
|
validationMessages: {
|
|
193
166
|
required: "Last Name is required",
|
|
194
167
|
},
|
|
168
|
+
inputClass: "t-text-center",
|
|
195
169
|
...updates,
|
|
196
170
|
})
|
|
197
171
|
};
|
|
198
172
|
|
|
199
|
-
const
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
173
|
+
const fullNameFLMobileCol = (scope, updates = {}) => {
|
|
174
|
+
return {
|
|
175
|
+
$el: "div",
|
|
176
|
+
attrs: {
|
|
177
|
+
class: "t-flex t-flex-col sm:t-flex-row t-flex-wrap t-gap-x-[2%] t-justify-center sm:!t-max-w-[70%]",
|
|
178
|
+
},
|
|
179
|
+
children: [
|
|
180
|
+
firstNameFL(scope, { outerClass: "sm:!t-max-w-[49%]", ...updates }),
|
|
181
|
+
lastNameFL(scope, { outerClass: "sm:!t-max-w-[49%]", ...updates }),
|
|
182
|
+
],
|
|
183
|
+
}
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
const phoneFL = (scope, updates = {}) => {
|
|
187
|
+
return text({
|
|
188
|
+
$formkit: "FloatingLabelText",
|
|
189
|
+
datatype: "tel",
|
|
204
190
|
name: scope ? scope + ":" + "Primary_Phone" : "Primary_Phone",
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
help: updates.help || "10-digit phone number, hyphens optional",
|
|
191
|
+
placeholder: updates.placeholder || "Phone Number",
|
|
192
|
+
maxlength: 14,
|
|
193
|
+
help: updates.help || null,
|
|
209
194
|
autocomplete: "tel-national",
|
|
210
195
|
"data-tf-sensitive": "false",
|
|
211
|
-
validation: "required|matches:/^[0-9]{3}
|
|
196
|
+
validation: "required|matches:/^[0-9]{3}[0-9]{3}[0-9]{4}$/|valid_phone",
|
|
212
197
|
validationMessages: {
|
|
213
198
|
required: "Phone Number is required",
|
|
214
|
-
matches: "Invalid Phone Format, use
|
|
199
|
+
matches: "Invalid Phone Format, use (XXX) YYY-ZZZZ",
|
|
215
200
|
valid_phone: "Invalid Phone Number",
|
|
216
201
|
},
|
|
217
202
|
helpClass: "t-mt-2.5 md:t-text-right md:t-mt-[-2px]",
|
|
203
|
+
inputClass: "t-text-center",
|
|
204
|
+
wrapperClass: "t-flex t-justify-center",
|
|
218
205
|
...updates,
|
|
219
206
|
})
|
|
220
207
|
};
|
|
@@ -263,17 +250,6 @@ const applicantAge = (scope, vertical, updates = {}) => {
|
|
|
263
250
|
)
|
|
264
251
|
};
|
|
265
252
|
|
|
266
|
-
const bankruptcyCrossSell = (scope) =>
|
|
267
|
-
sbsCheckbox({
|
|
268
|
-
label: "I'd also like a consult for bankruptcy or debt elimination (optional)",
|
|
269
|
-
help: "Note: you will be contacted separately by a bankruptcy/debt expert",
|
|
270
|
-
name: scope ? scope + ":CrossSell_Bankruptcy" : "CrossSell_Bankruptcy",
|
|
271
|
-
id: scope ? scope + ":CrossSell_Bankruptcy" : "CrossSell_Bankruptcy",
|
|
272
|
-
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")',
|
|
273
|
-
validation: null,
|
|
274
|
-
helpClass: "!t-text-sm",
|
|
275
|
-
});
|
|
276
|
-
|
|
277
253
|
// TODO: vertical not supported yet
|
|
278
254
|
const comments = (scope, vertical, updates) =>
|
|
279
255
|
textArea(
|
|
@@ -447,6 +423,24 @@ function secureIcon(updates = {}) {
|
|
|
447
423
|
return merge(secureIconDefault, updates)
|
|
448
424
|
}
|
|
449
425
|
|
|
426
|
+
function secureIconStandalone(updates = {}) {
|
|
427
|
+
return {
|
|
428
|
+
if: "$activeStep === $lastStep()",
|
|
429
|
+
style: {
|
|
430
|
+
if: "$activeStep !== $lastStep()",
|
|
431
|
+
then: "display: none;",
|
|
432
|
+
},
|
|
433
|
+
children: [
|
|
434
|
+
secureIcon({
|
|
435
|
+
attrs: {
|
|
436
|
+
class: "t-flex t-justify-center t-items-center t-text-sm t-text-gray-500 t-pb-6 sm:t-pb-8",
|
|
437
|
+
},
|
|
438
|
+
...updates,
|
|
439
|
+
}),
|
|
440
|
+
],
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
450
444
|
function verticalStepHeadline(updates) {
|
|
451
445
|
return {
|
|
452
446
|
$el: "h3",
|
|
@@ -473,13 +467,6 @@ function commentsStepHeadline(updates) {
|
|
|
473
467
|
}
|
|
474
468
|
}
|
|
475
469
|
|
|
476
|
-
function commentsStepHeadlineLegal(updates) {
|
|
477
|
-
return commentsStepHeadline({
|
|
478
|
-
headline: updates.headline || "Additional Case Details",
|
|
479
|
-
headlineClass: updates.headlineClass,
|
|
480
|
-
})
|
|
481
|
-
}
|
|
482
|
-
|
|
483
470
|
function firstAndLastStepHeadline(updates) {
|
|
484
471
|
return {
|
|
485
472
|
$el: "h3",
|
|
@@ -589,55 +576,75 @@ function step(name, inputs, updates = {}) {
|
|
|
589
576
|
})
|
|
590
577
|
}
|
|
591
578
|
|
|
592
|
-
function
|
|
579
|
+
function commentsLegal(updates = {}) {
|
|
580
|
+
const mergedUpdates = { ...updates, nextOnEnter: false };
|
|
581
|
+
|
|
593
582
|
return step(
|
|
594
|
-
"
|
|
583
|
+
"comments",
|
|
595
584
|
[
|
|
596
|
-
|
|
585
|
+
commentsStepHeadline(updates),
|
|
597
586
|
comments(updates.scope, false, {
|
|
598
587
|
label: typeof updates.label === "undefined" ? DEFAULT_COMMENTS_LABEL_LEGAL : updates.label,
|
|
599
588
|
placeholder: updates.placeholder || DEFAULT_COMMENTS_PLACEHOLDER_DYNAMIC_LEGAL,
|
|
600
589
|
// TODO: this is a mess
|
|
601
590
|
inputClass: typeof updates.inputClass === "undefined" ? "!t-h-32" : updates.inputClass,
|
|
591
|
+
innerClass: typeof updates.innerClass === "undefined" ? "t-max-w-xl" : updates.innerClass,
|
|
592
|
+
wrapperClass: typeof updates.wrapperClass === "undefined" ? undefined : updates.wrapperClass,
|
|
602
593
|
}),
|
|
603
|
-
// TODO: needs scope support
|
|
604
|
-
bankruptcyCrossSell(),
|
|
605
|
-
{
|
|
606
|
-
$el: "div",
|
|
607
|
-
if: "$get(CrossSell_Bankruptcy).value == true",
|
|
608
|
-
children: [
|
|
609
|
-
comments("CrossSell:Bankruptcy", false, {
|
|
610
|
-
label: "Bankruptcy or debt details:",
|
|
611
|
-
placeholder: "Please describe your bankrtupcy or debt situation in a few words...",
|
|
612
|
-
inputClass: "!t-h-16",
|
|
613
|
-
}),
|
|
614
|
-
],
|
|
615
|
-
},
|
|
616
594
|
],
|
|
617
|
-
|
|
595
|
+
mergedUpdates
|
|
618
596
|
)
|
|
619
597
|
}
|
|
620
598
|
|
|
621
|
-
function
|
|
599
|
+
function contactInfoV2(updates = {}) {
|
|
622
600
|
return step(
|
|
623
601
|
"contactInfo",
|
|
624
602
|
[
|
|
625
603
|
contactStepHeadline(updates),
|
|
626
604
|
contactStepSubHeadline(updates),
|
|
627
605
|
trustedFormScript(),
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
606
|
+
{
|
|
607
|
+
$el: "div",
|
|
608
|
+
attrs: {
|
|
609
|
+
class: "t-flex t-flex-col t-justify-center t-items-center",
|
|
610
|
+
},
|
|
611
|
+
children: [
|
|
612
|
+
emailFL(updates.scope, {
|
|
613
|
+
outerClass: "!t-max-w-[95%] !t-w-[96%] sm:!t-w-[70%]",
|
|
614
|
+
innerClass: "!t-w-[98%] !t-max-w-[98%] sm:!t-w-[100%] sm:!t-max-w-[100%]",
|
|
615
|
+
}),
|
|
616
|
+
phoneFL(updates.scope, {
|
|
617
|
+
outerClass: "!t-max-w-[95%] !t-w-[96%] sm:!t-w-[70%]",
|
|
618
|
+
innerClass: "!t-w-[98%] !t-max-w-[98%] sm:!t-w-[100%] sm:!t-max-w-[100%]",
|
|
619
|
+
}),
|
|
620
|
+
],
|
|
621
|
+
},
|
|
622
|
+
TCPAConsent(updates.scope, {
|
|
623
|
+
outerClass: "!t-flex !t-flex-col !t-justify-center !t-items-center",
|
|
624
|
+
wrapperClass: "t-w-[95%] sm:t-w-[80%]",
|
|
625
|
+
messagesClass: "t-w-[95%] sm:t-w-[80%]",
|
|
626
|
+
}),
|
|
632
627
|
],
|
|
633
628
|
{ nextOnEnter: false }
|
|
634
629
|
)
|
|
635
630
|
}
|
|
636
631
|
|
|
637
|
-
function
|
|
632
|
+
function firstAndLastV4(updates = {}) {
|
|
638
633
|
return step(
|
|
639
634
|
"firstAndLast",
|
|
640
|
-
[
|
|
635
|
+
[
|
|
636
|
+
firstAndLastStepHeadline({
|
|
637
|
+
headline: updates.headline ?? "Who is looking for help?",
|
|
638
|
+
headlineClass: updates.headlineClass,
|
|
639
|
+
}),
|
|
640
|
+
{
|
|
641
|
+
$el: "div",
|
|
642
|
+
attrs: {
|
|
643
|
+
class: "t-flex t-flex-col t-justify-center t-items-center t-pt-3",
|
|
644
|
+
},
|
|
645
|
+
children: [fullNameFLMobileCol(updates.scope)],
|
|
646
|
+
},
|
|
647
|
+
],
|
|
641
648
|
updates
|
|
642
649
|
)
|
|
643
650
|
}
|
|
@@ -709,13 +716,17 @@ function ssdiHaveAttorney(updates = {}) {
|
|
|
709
716
|
)
|
|
710
717
|
}
|
|
711
718
|
|
|
712
|
-
const
|
|
719
|
+
const formNavigationNoFinalBack = (updates = {}) => ({
|
|
713
720
|
$el: "div",
|
|
714
721
|
attrs: {
|
|
715
722
|
class: {
|
|
716
723
|
if: "$activeStep === $firstStep()",
|
|
717
724
|
then: "step-nav " + (updates.firstStepButtonClass || "!t-justify-center sm:!t-justify-between"),
|
|
718
|
-
else:
|
|
725
|
+
else: {
|
|
726
|
+
if: "$activeStep === $lastStep()",
|
|
727
|
+
then: "step-nav !t-justify-center ",
|
|
728
|
+
else: "step-nav !t-justify-between",
|
|
729
|
+
},
|
|
719
730
|
},
|
|
720
731
|
},
|
|
721
732
|
children: [
|
|
@@ -725,12 +736,12 @@ const formNavigation = (updates = {}) => ({
|
|
|
725
736
|
onClick: "$setPreviousStep($prevStepFunc($get(form)))",
|
|
726
737
|
children: "Back",
|
|
727
738
|
outerClass: {
|
|
728
|
-
if: "$activeStep
|
|
739
|
+
if: "$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",
|
|
729
740
|
then: "t-hidden sm:t-block",
|
|
730
741
|
else: "",
|
|
731
742
|
},
|
|
732
743
|
style: {
|
|
733
|
-
if: "$activeStep
|
|
744
|
+
if: "$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",
|
|
734
745
|
then: "display: none;",
|
|
735
746
|
},
|
|
736
747
|
classes: {
|
|
@@ -769,7 +780,8 @@ const formNavigation = (updates = {}) => ({
|
|
|
769
780
|
then: "display: none;",
|
|
770
781
|
},
|
|
771
782
|
classes: {
|
|
772
|
-
input: (updates.inputClass || "") + "
|
|
783
|
+
input: (updates.inputClass || "") + " f-navigation-input !t-w-60",
|
|
784
|
+
outer: "!t-mt-0 !t-mb-0",
|
|
773
785
|
},
|
|
774
786
|
},
|
|
775
787
|
],
|
|
@@ -1642,76 +1654,81 @@ const schema = [
|
|
|
1642
1654
|
defaultMetaPropsLegal(),
|
|
1643
1655
|
formAnchor(),
|
|
1644
1656
|
{
|
|
1645
|
-
$cmp:
|
|
1657
|
+
$cmp: "FormKit",
|
|
1646
1658
|
props: formProps({
|
|
1647
|
-
formId:
|
|
1659
|
+
formId: "ssdi",
|
|
1648
1660
|
redirectMap: {
|
|
1649
|
-
|
|
1661
|
+
"*": LegalRedirectUrl(),
|
|
1650
1662
|
},
|
|
1651
1663
|
}),
|
|
1652
1664
|
children: [
|
|
1653
1665
|
progressBar(),
|
|
1654
1666
|
headline({
|
|
1655
1667
|
children: '$urlParam("hl", "Start Your FREE Case Evaluation")',
|
|
1656
|
-
if:
|
|
1657
|
-
headlineClass:
|
|
1668
|
+
if: "$activeStep === $firstStep()",
|
|
1669
|
+
headlineClass: "!t-text-dark",
|
|
1658
1670
|
}),
|
|
1659
1671
|
subHeadline({
|
|
1660
|
-
children: '$urlParam("shl", "
|
|
1661
|
-
if:
|
|
1662
|
-
subheadlineClass:
|
|
1672
|
+
children: '$urlParam("shl", "Receive up to $4,018 Per Month!")',
|
|
1673
|
+
if: "$activeStep === $firstStep()",
|
|
1674
|
+
subheadlineClass: "!t-text-[#00428A]",
|
|
1663
1675
|
}),
|
|
1664
1676
|
...hiddenInputsLegal,
|
|
1665
1677
|
{
|
|
1666
|
-
$el:
|
|
1678
|
+
$el: "div",
|
|
1667
1679
|
attrs: {
|
|
1668
|
-
class:
|
|
1680
|
+
class: "form-body",
|
|
1669
1681
|
},
|
|
1670
1682
|
children: [
|
|
1671
1683
|
ssdiTOLPAndZip(),
|
|
1672
1684
|
ssdiApplicantAge({
|
|
1673
1685
|
nextOnInput: true,
|
|
1674
|
-
headline:
|
|
1686
|
+
headline: "What is the Age of the Applicant?",
|
|
1675
1687
|
}),
|
|
1676
1688
|
ssdiDisabilityConditionStopWork({
|
|
1677
1689
|
nextOnInput: true,
|
|
1678
|
-
headline: "Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"
|
|
1690
|
+
headline: "Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?",
|
|
1679
1691
|
}),
|
|
1680
1692
|
ssdiDisabilityWorkHistory({
|
|
1681
1693
|
nextOnInput: true,
|
|
1682
|
-
headline: "Have You Had a Full-Time Job Within the Past 5 Years?"
|
|
1694
|
+
headline: "Have You Had a Full-Time Job Within the Past 5 Years?",
|
|
1683
1695
|
}),
|
|
1684
1696
|
ssdiSocialSecurityDisabilityReceivingBenefits({
|
|
1685
1697
|
nextOnInput: true,
|
|
1686
|
-
headline: "Are You Currently Receiving Social Security Disability Benefits?"
|
|
1698
|
+
headline: "Are You Currently Receiving Social Security Disability Benefits?",
|
|
1687
1699
|
}),
|
|
1688
1700
|
ssdiDoctorTreatment({
|
|
1689
1701
|
nextOnInput: true,
|
|
1690
|
-
headline: "Have You Recently Been Treated by a Doctor, Hospital or Clinic?"
|
|
1702
|
+
headline: "Have You Recently Been Treated by a Doctor, Hospital or Clinic?",
|
|
1691
1703
|
}),
|
|
1692
1704
|
ssdiHaveAttorney({
|
|
1693
1705
|
nextOnInput: true,
|
|
1694
|
-
headline: "Already Working with An Attorney?"
|
|
1706
|
+
headline: "Already Working with An Attorney?",
|
|
1695
1707
|
}),
|
|
1696
|
-
|
|
1708
|
+
commentsLegal({
|
|
1697
1709
|
label: null,
|
|
1698
|
-
headline:
|
|
1699
|
-
headlineClass:
|
|
1710
|
+
headline: "Please briefly describe your situation:",
|
|
1711
|
+
headlineClass: "!t-text-dark",
|
|
1700
1712
|
}),
|
|
1701
|
-
|
|
1702
|
-
headlineClass:
|
|
1713
|
+
firstAndLastV4({
|
|
1714
|
+
headlineClass: "!t-text-dark",
|
|
1703
1715
|
}),
|
|
1704
|
-
|
|
1705
|
-
headline:
|
|
1706
|
-
headlineClass:
|
|
1707
|
-
subheadline:
|
|
1716
|
+
contactInfoV2({
|
|
1717
|
+
headline: "Submit Your Free Application",
|
|
1718
|
+
headlineClass: "!t-text-[#00428A]",
|
|
1719
|
+
subheadline:
|
|
1720
|
+
"Based on your input you may qualify for SSDI benefits. Please verify your contact information.",
|
|
1708
1721
|
}),
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1722
|
+
formNavigationNoFinalBack({
|
|
1723
|
+
inputClass: "!t-font-extrabold",
|
|
1724
|
+
firstStepButtonClass: "!t-justify-center",
|
|
1725
|
+
}),
|
|
1726
|
+
secureIconStandalone(),
|
|
1727
|
+
formDetails(),
|
|
1728
|
+
],
|
|
1729
|
+
},
|
|
1730
|
+
],
|
|
1731
|
+
},
|
|
1715
1732
|
];
|
|
1716
1733
|
|
|
1717
1734
|
export { schema as default };
|
package/dist/forms/ssdi.iife.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var ssdi=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a=e=>(e.name&&!e.id&&(e.id=e.name),e),i=t=>(t.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",(t=>(a(t),e({$formkit:"checkbox",validation:"required",validationMessages:{required:"Field is required"}},t)))(t)),n=t=>(a(t),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),l=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",n(e)))(e)),r=e=>(e.options=["Yes","No"],e.optionsClass="t-flex t-justify-center t-my-3",(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",n(e)))(e)),s=t=>(a(t),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)),o=e=>(e.wrapperClass="side-by-side t-items-center",s(e)),d=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",s(e)),c=(e,t,a={})=>(t?d:o)({$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}),p=(e,t,a={})=>(t?d:o)({label:t?a.label:"First Name:",placeholder:"First Name",name:e?e+":First_Name":"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"},...a}),u=(e,t,a={})=>(t?d:o)({label:t?a.label:"Last Name:",placeholder:"Last Name",name:e?e+":Last_Name":"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"},...a}),m=(e,t,a={})=>(t?d:o)({$formkit:"tel",name:e?e+":Primary_Phone":"Primary_Phone",label:t?a.label:"Phone Number:",placeholder:a.placeholder||"###-###-####",maxlength:12,help:a.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}),f=(e,t,a={})=>(t?d:o)({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}),y=(t,a,i={})=>(a?d:o)(e({label:a?i.label:"Age of Applicant?",placeholder:"Age between 18 and 65",name:t?t+":Applicant_Age":"Applicant_Age",value:a?i.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"},...i})),h=(t,i,n)=>(t=>(a(t),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"'},n)),g=(t,a,i={})=>(a?r:l)(e({name:t?t+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:a?i.label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"},i)),b=(t,a,i={})=>(a?r:l)(e({name:t?t+":Disability_Work_History":"Disability_Work_History",label:a?i.label:"Have You Had a Full-Time Job Within the Past 5 Years?"},i)),C=(t,a,i={})=>(a?r:l)(e({name:t?t+":Doctor_Treatment":"Doctor_Treatment",label:a?i.label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"},i)),x=(t,a,i={})=>(a?r:l)(e({label:a?i.label:"Already Working with An Attorney?",name:t?t+":Have_Attorney":"Have_Attorney"},i)),v=(t,a,i={})=>(a?r:l)(e({name:t?t+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:a?i.label:"Are You Currently Receiving Social Security Disability Benefits?"},i)),w=(e,t={})=>({$formkit:"checkbox",label:"$meta.tcpaLanguage",__raw__sectionsSchema:{label:{attrs:{innerHTML:"$label"}}},name:e?e+":TCPA_Opt_In":"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{outer:t.outerClass?t.outerClass:"",wrapper:t.wrapperClass?t.wrapperClass:"",messages:t.messagesClass?t.messagesClass:"",label:"!t-text-[0.7rem] t-text-slate-500 t-font-normal !t-leading-[0.9rem]"+(t.labelClass?" "+t.labelClass:"")}}),I=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,$=e=>{if(I(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(I(a))return a;const i=$(a);if(i)return i}return null},S={$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 k(t={}){return e(S,t)}function P(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-lg sm:t-text-xl t-font-bold t-text-dark t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function D(e){return function(e){return{$el:"h3",children:e.headline||"Additional Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-lg sm:t-text-xl 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 E(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function T(e){return{$el:"h3",children:e.headline||'$getKey($meta, "finalHeadlines." + ($get(Type_Of_Legal_Problem).value || $get(Category).value), $meta.defaultFinalHeadline)',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-4 t-px-1 "+(e.headlineClass||"")+" f-contact-info-headline"}}}function _(e){return{$el:"h5",children:e.subheadline||'$getKey($meta, "finalSubHeadlines." + ($get(Type_Of_Legal_Problem).value || $get(Category).value), $meta.defaultFinalSubHeadline)',attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-6 t-pt-0 t-px-3 "+(e.subheadlineClass||"")+" f-contact-info-subheadline"}}}function A(t,a,i={}){const{nextOnEnter:n=!0,nextOnInput:l=!1,stepKey:r,nextStepMap:s,triggerRedirectMap:o,autoFocus:d}=i;if(a&&a.length&&(n||l)){const e=$(a[a.length-1]);e&&!0===n&&(e.onKeypress="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))"),e&&!0===l&&(e.onInput="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))")}return e(((e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}}))(t,r),{children:[{$formkit:"group",id:t,name:t,nextStepMap:s,triggerRedirectMap:o,autoFocus:d,children:a}]})}const L={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 W(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const O={};const F={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const B={$el:"div",attrs:{class:"t-mt-7 t-mb-5 t-w-full t-flex t-flex-col t-justify-center t-items-center",style:{if:"$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",then:"display: none"}},children:[{$el:"div",attrs:{class:"t-flex t-justify-center"},children:[{$el:"span",attrs:{id:"progress-bar-text",class:"t-text-sm t-mb-1"},children:["0% Complete"]}]},{$el:"div",attrs:{class:"t-bg-gray-100 t-w-9/12 t-rounded"},children:[{$el:"div",attrs:{id:"progress-bar",class:"t-flex t-flex-col t-justify-center t-text-center t-whitespace-nowrap t-w-[10%] t-h-1.5 t-rounded t-text-white t-bg-[#007bff]",style:{transition:"width 0.5s ease"}}}]}]};const j=[{$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}],M={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 broke my arm at work and need help getting compensation"',"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"'},H={Adoption:"Connect With Adoption Professionals Today","Auto and Car Accidents":"Connect With Accident Professionals Today",Bankruptcy:"Take Control of Your Financial Future","Birth Certificate and Name Change":"Start Your Change Today","Business Lawyers":"Connect With Business Professionals Today","Child Custody":"Connect With Custody Professionals Today","Child Support":"Connect With Child Support Professionals","Civil Rights and Discrimination":"Stand Up For Your Rights","Civil Lawsuit":"Connect With Lawsuit Professionals Today","Copyrights and Trademarks":"Protect Your Intellectual Property","Debt and Collections":"Connect With Debt Professionals Today","Divorce and Separation":"Connect With Divorce Professionals Today","DUI and DWI":"Defend Against DUI Charges","Elder Law":"Connect With Elder Law Professionals",Expungement:"Clear Your Record","Family Issues":"Connect With Family Legal Help",Foreclosure:"Fight to Keep Your Home",Guardianship:"Connect With Guardianship Professionals","Immigration and Visas":"Get Immigration Legal Help",Insurance:"Get Insurance Legal Help","Lemon Law":"Connect With Lemon Law Professionals","Long Term Disability":"Connect With Disability Professionals","Medical Malpractice":"Hold Negligent Providers Accountable","Patents and Intellectual Property":"Connect With IP Professionals Today","Personal Injury":"Maximize Your Injury Compensation","Probate and Estates":"Manage Probate with Expert Guidance","Product Liability":"Get Justice for Faulty Products","Real Estate":"Connect With Real Estate Professionals","Sexual Harassment":"Stand Up Against Sexual Harassment","Social Security Disability and Insurance":"Get the Benefits You Deserve","Tax and IRS":"Connect With Tax Legal Help","Traffic and Tickets":"Protect Your Record Today",Unemployment:"Connect With Unemployment Professionals","Victim of a Crime":"Seek Justice as a Crime Victim","Wills and Trusts":"Plan Your Estate with Confidence","Workers Compensation":"Maximize Your Workers' Comp Benefits","Wrongful Death":"Seek Justice for a Loved One","Wrongful Termination":"Fight Back Against Unfair Firing Today"},q={},R=["haveAttorney","degreeOfInterest","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],N=["haveAttorney","degreeOfInterest","lawyerPaymentMethod","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],Y=["haveAttorney","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],U={values:{Type_Of_Legal_Problem:{Adoption:["maritalStatus","haveChildren",...N],"Asbestos and Mesothelioma":["incidentDate","doctorTreatment",...R],"Auto and Car Accidents":["incidentDate","atFault","primaryInjury","doctorTreatment","policeReportFiled",...Y],Bankruptcy:["totalMonthlyIncome","totalDebt","ownRealEstate","valueOfAssets",...R],"Business Lawyers":["businessServices","businessType","numEmployeesOfBusiness",...R],"Child Custody":["childRelationship","childHome","childPrimaryCaregiver",...N],"Child Support":["childRelationship","childHome","childPrimaryCaregiver",...N],"Civil Rights and Discrimination":["civilRightsType",...R],"Civil Lawsuit":["civilDefense","lawsuitOtherParty",...R],"File a Lawsuit":["civilLawsuitTOLPDisplay","lawsuitOtherParty",...R],"Defend a Lawsuit":["lawsuitOtherParty",...R],"Consumer Lawyers":["consumerLawyerType","incidentDate","lawsuitOtherParty",...R],"Criminal and Felony":["criminalTOLPDisplay","crimeCommittedDate","roleInMatterCriminal","pendingCharges",...N],"Debt and Collections":["totalMonthlyIncome","totalDebt","ownRealEstate","valueOfAssets",...R],"Divorce and Separation":["maritalStatus","haveChildren",...N],"DUI and DWI":["incidentDate","priorAlcoholOffenses","typeOfAlcoholTest","bloodContentAlcoholTest","pendingCharges",...R],"Employment and Workplace":["employmentAndWorkplaceTOLPDisplay","numEmployeesOfBusiness","employerType","employeeAtCompany",...R],Expungement:["incidentDate","criminalChargeType",...N],"Family Issues":["maritalStatus","haveChildren",...N],Foreclosure:["ownRealEstate","typeOfProperty","amountPaymentsPastDue","loanAmount","defaultNotice",...R],Guardianship:["maritalStatus","haveChildren",...N],"Immigration and Visas":["countryOfCitizenship","immigrationLocation","immigrationEntry","immigrationType","immigrationStatus","immigrationDetails",...R],"Landlord and Tenant":["landlordTenantIssue","landlordTenantParty",...R],"Lemon Law":["incidentDate","lawsuitOtherParty",...R],"Long Term Disability":["applicantOccupation","applicantAge","applicantLTDisabilityPolicy","applicantDisabilityHowObtain","applicantPreviouslyAppliedLtdBenefits","applicantReceivedDisabilityBenefits","applicantMonthlySalary",...Y],"Medical Malpractice":["incidentDate","claimStatus","doctorTreatment","medicalMalpracticeInjuries",...R],"Patents and Intellectual Property":["patentAssistanceType","patentFor",...R],"Personal Injury":["incidentDate","claimStatus","atFault","primaryInjury","doctorTreatment",...Y],"Probate and Estates":["valueOfAssets","typeOfAssets","roleInMatterProbate","estateLegalServicesNeeded",...R],"Property Damage":["wouldLikeLawyerTo",...R],"Real Estate":["realEstateTOLPDisplay","realEstateArea","wouldLikeLawyerTo",...R],"Social Security Disability and Insurance":["applicantAge","disabilityConditionStopWork","disabilityWorkHistory","socialSecurityDisabilityReceivingBenefits","doctorTreatment",...Y],"Tax and IRS":["totalDebt","taxProblemDetails","taxLevel","taxIssueType",...R],"Traffic and Tickets":["driversLicenseType","trafficViolations","haveCourtDate",...R],Unemployment:["numEmployeesOfBusiness","employerType","degreeOfInterest","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],"Victim of a Crime":["crimeCommittedDate","roleInMatterCriminal","pendingCharges",...N],"Wills and Trusts":["valueOfAssets","typeOfAssets","roleInMatterProbate","estateLegalServicesNeeded",...R],"Workers Compensation":["incidentDate","claimStatus","primaryInjury","causeOfInjury","doctorTreatment",...Y],"Workplace Harassment":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R],"Workplace Discrimination":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R],"Wrongful Death":["incidentDate","relationshipToVictim","criminalChargesFiled","causeOfDeath",...Y],"Wrongful Termination":["numEmployeesOfBusiness","employerType",...R]},"*":R}};function V(e,t=[],a={}){const i={...e};return i.values=function e(i){const n={};for(const l in i)Array.isArray(i[l])?n[l]=i[l].filter((e=>!t.includes(e))).map((e=>a[e]||e)):"object"==typeof i[l]?n[l]=e(i[l]):n[l]=i[l];return n}(e.values),i}V(U,["legalCrossSells"],{commentsWithBankruptcy:"comments"});const z=U.values.Type_Of_Legal_Problem;z["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),z["Workers Compensation"].filter((e=>"legalCrossSells"!==e)),z["Personal Injury"].filter((e=>"legalCrossSells"!==e)),z["Personal Injury"].filter((e=>"legalCrossSells"!==e)),z["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),z["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),z["Personal Injury"].filter((e=>"legalCrossSells"!==e)),z["Personal Injury"].filter((e=>"legalCrossSells"!==e)),z["Child Custody"],z["Child Support"],U.values["*"],z["Family Issues"],z["Child Support"],z["Child Custody"],U.values["*"],z["Divorce and Separation"],z["Defend a Lawsuit"],z["File a Lawsuit"];V({values:{Type_Of_Legal_Problem:{"Defend a Lawsuit":z["Defend a Lawsuit"],"File a Lawsuit":z["File a Lawsuit"]},"*":["lawsuitOtherParty",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});V({values:{Type_Of_Legal_Problem_Display:{"Automobile Accident":z["Auto and Car Accidents"],"Contract Disputes":z["Business Lawyers"],"Dog Bite":z["Personal Injury"],"Employment and Workplace":z["Employment and Workplace"],Fraud:z["Consumer Lawyers"],"Medical Malpractice":z["Medical Malpractice"],"Personal Injury":z["Personal Injury"],"Property Damage":z["Property Damage"],"Real Estate":z["Real Estate"],"Not Sure or Other":U.values["*"]},"*":["lawsuitOtherParty",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});V({values:{Type_Of_Legal_Problem_Display:{"Victim of a Crime":z["Victim of a Crime"],"DUI and DWI":z["DUI and DWI"],Expungement:z.Expungement,"Not Sure or Other":U.values["*"]},"*":["crimeCommittedDate","roleInMatterCriminal","pendingCharges",...N]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});V({values:{Type_Of_Legal_Problem_Display:{"Wrongful Termination":z["Wrongful Termination"],"Workers Compensation":z["Workers Compensation"],"Personal Injury":z["Personal Injury"],Unemployment:z.Unemployment},"*":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"}),z["Workplace Harassment"],z["Workplace Discrimination"],z["Probate and Estates"],z["Wills and Trusts"],z["Wrongful Death"],z["Patents and Intellectual Property"],z["Business Lawyers"],z["Business Lawyers"],U.values["*"];V({values:{Type_Of_Legal_Problem_Display:{Foreclosure:z.Foreclosure,"Landlord and Tenant":z["Landlord and Tenant"],"Wills, Trusts, and Estates":z["Wills and Trusts"],"Property Damage":z["Property Damage"]},"*":["realEstateArea","wouldLikeLawyerTo",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});const G=[function(a=null){let i=M,n=H,l=q;return a&&(i=W(M,a),n=W(H,a),l=W(q,a)),{type:"meta",data:e(O,{tcpaLanguage:'By checking this box, I agree to the Terms of Use and consent to be contacted by <a href="/providers" target="_blank">lawyers, lawyer networks, and partners</a> of this website using live, autodialed, pre-recorded, or artificial voice calls and text messages, at any time including before 8 AM or after 9 PM local time. 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:i,defaultFinalHeadline:"Connect With The Legal Help You Deserve",finalHeadlines:n,defaultFinalSubHeadline:"Get a no-obligation consultation with a legal expert.",finalSubHeadlines:l})}}(),e(F,K),{$cmp:"FormKit",props:function(t){const a=e(L,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"ssdi",redirectMap:{"*":"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}"}}),children:[function(t){return e(B,t)}(),function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center t-text-[1.7rem] sm: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", "Start Your FREE Case Evaluation")',if:"$activeStep === $firstStep()",headlineClass:"!t-text-dark"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center t-text-[1.1rem] md:t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 t-pb-3 "+(e.subheadlineClass||"")+" f-first-subheadline"}}}(t),t)}({children:'$urlParam("shl", "You Could Receive up to $3,148 Per Month!")',if:"$activeStep === $firstStep()",subheadlineClass:"!t-text-[#00428A]"}),...j,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return A("ssdiTOLPAndZip",[{$formkit:"hidden",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",value:"Social Security Disability and Insurance"},f(e.scope,!0,e.input)],e)}(),function(e={}){return A("ssdiApplicantAge",[P(e),y(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"What is the Age of the Applicant?"}),function(e={}){return A("ssdiDisabilityConditionStopWork",[P(e),g(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"}),function(e={}){return A("ssdiDisabilityWorkHistory",[P(e),b(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Have You Had a Full-Time Job Within the Past 5 Years?"}),function(e={}){return A("ssdiSocialSecurityDisabilityReceivingBenefits",[P(e),v(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Are You Currently Receiving Social Security Disability Benefits?"}),function(e={}){return A("ssdiDoctorTreatment",[P(e),C(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"}),function(e={}){return A("ssdiHaveAttorney",[P(e),x(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Already Working with An Attorney?"}),function(e={}){return A("commentsWithBankruptcy",[D(e),h(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}),i({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:a?a+":CrossSell_Bankruptcy":"CrossSell_Bankruptcy",id:a?a+":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"}),{$el:"div",if:"$get(CrossSell_Bankruptcy).value == true",children:[h("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});var a}({label:null,headline:"Please briefly describe your situation:",headlineClass:"!t-text-dark"}),function(e={}){return A("firstAndLast",[E(e),p(e.scope),u(e.scope)],e)}({headlineClass:"!t-text-dark"}),function(e={}){return A("contactInfo",[T(e),_(e),{$el:"script",if:"$activeStep === $lastStep()",children:"(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})();"},c(e.scope),m(e.scope),w(e.scope),k()],{nextOnEnter:!1})}({headline:"Submit Your Free Application",headlineClass:"!t-text-[#00428A]",subheadline:"Based on your input you may qualify for SSDI benefits. Please verify your contact information."}),((e={})=>({$el:"div",attrs:{class:{if:"$activeStep === $firstStep()",then:"step-nav "+(e.firstStepButtonClass||"!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 K;return G}();
|
|
1
|
+
var ssdi=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a=e=>(e.name&&!e.id&&(e.id=e.name),e),i=t=>(a(t),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),n=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",i(e)))(e)),s=e=>(e.options=["Yes","No"],e.optionsClass="t-flex t-justify-center t-my-3",(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",i(e)))(e)),l=t=>(a(t),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)),r=e=>(e.wrapperClass="side-by-side t-items-center",l(e)),o=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",l(e)),d=(e,t={})=>l({$formkit:"FloatingLabelText",name:e?e+":Email":"Email",placeholder:"Email Address",autocomplete:"email","data-tf-sensitive":"false",validation:"required|email",validationMessages:{required:"Email is required",email:"Invalid Email"},inputClass:"t-text-center",wrapperClass:"t-flex t-justify-center",...t}),c=(e,t={})=>l({$formkit:"FloatingLabelText",placeholder:"First Name",name:e?e+":First_Name":"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"},inputClass:"t-text-center",...t}),p=(e,t={})=>l({$formkit:"FloatingLabelText",placeholder:"Last Name",name:e?e+":Last_Name":"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"},inputClass:"t-text-center",...t}),m=(e,t={})=>({$el:"div",attrs:{class:"t-flex t-flex-col sm:t-flex-row t-flex-wrap t-gap-x-[2%] t-justify-center sm:!t-max-w-[70%]"},children:[c(e,{outerClass:"sm:!t-max-w-[49%]",...t}),p(e,{outerClass:"sm:!t-max-w-[49%]",...t})]}),u=(e,t={})=>l({$formkit:"FloatingLabelText",datatype:"tel",name:e?e+":Primary_Phone":"Primary_Phone",placeholder:t.placeholder||"Phone Number",maxlength:14,help:t.help||null,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 (XXX) YYY-ZZZZ",valid_phone:"Invalid Phone Number"},helpClass:"t-mt-2.5 md:t-text-right md:t-mt-[-2px]",inputClass:"t-text-center",wrapperClass:"t-flex t-justify-center",...t}),f=(e,t,a={})=>(t?o:r)({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}),y=(t,a,i={})=>(a?o:r)(e({label:a?i.label:"Age of Applicant?",placeholder:"Age between 18 and 65",name:t?t+":Applicant_Age":"Applicant_Age",value:a?i.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"},...i})),h=(t,i,n)=>(t=>(a(t),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"'},n)),g=(t,a,i={})=>(a?s:n)(e({name:t?t+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:a?i.label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"},i)),x=(t,a,i={})=>(a?s:n)(e({name:t?t+":Disability_Work_History":"Disability_Work_History",label:a?i.label:"Have You Had a Full-Time Job Within the Past 5 Years?"},i)),b=(t,a,i={})=>(a?s:n)(e({name:t?t+":Doctor_Treatment":"Doctor_Treatment",label:a?i.label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"},i)),C=(t,a,i={})=>(a?s:n)(e({label:a?i.label:"Already Working with An Attorney?",name:t?t+":Have_Attorney":"Have_Attorney"},i)),v=(t,a,i={})=>(a?s:n)(e({name:t?t+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:a?i.label:"Are You Currently Receiving Social Security Disability Benefits?"},i)),w=(e,t={})=>({$formkit:"checkbox",label:"$meta.tcpaLanguage",__raw__sectionsSchema:{label:{attrs:{innerHTML:"$label"}}},name:e?e+":TCPA_Opt_In":"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{outer:t.outerClass?t.outerClass:"",wrapper:t.wrapperClass?t.wrapperClass:"",messages:t.messagesClass?t.messagesClass:"",label:"!t-text-[0.7rem] t-text-slate-500 t-font-normal !t-leading-[0.9rem]"+(t.labelClass?" "+t.labelClass:"")}}),I=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,$=e=>{if(I(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(I(a))return a;const i=$(a);if(i)return i}return null},S={$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 k(t={}){return e(S,t)}function P(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-lg sm:t-text-xl t-font-bold t-text-dark t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function E(e){return{$el:"h3",children:e.headline||"Additional Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-lg sm:t-text-xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function T(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function D(e){return{$el:"h3",children:e.headline||'$getKey($meta, "finalHeadlines." + ($get(Type_Of_Legal_Problem).value || $get(Category).value), $meta.defaultFinalHeadline)',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-4 t-px-1 "+(e.headlineClass||"")+" f-contact-info-headline"}}}function A(e){return{$el:"h5",children:e.subheadline||'$getKey($meta, "finalSubHeadlines." + ($get(Type_Of_Legal_Problem).value || $get(Category).value), $meta.defaultFinalSubHeadline)',attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-6 t-pt-0 t-px-3 "+(e.subheadlineClass||"")+" f-contact-info-subheadline"}}}function L(t,a,i={}){const{nextOnEnter:n=!0,nextOnInput:s=!1,stepKey:l,nextStepMap:r,triggerRedirectMap:o,autoFocus:d}=i;if(a&&a.length&&(n||s)){const e=$(a[a.length-1]);e&&!0===n&&(e.onKeypress="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))"),e&&!0===s&&(e.onInput="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))")}return e(((e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}}))(t,l),{children:[{$formkit:"group",id:t,name:t,nextStepMap:r,triggerRedirectMap:o,autoFocus:d,children:a}]})}const _={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 W(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const O={};const F={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const j={$el:"div",attrs:{class:"t-mt-7 t-mb-5 t-w-full t-flex t-flex-col t-justify-center t-items-center",style:{if:"$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",then:"display: none"}},children:[{$el:"div",attrs:{class:"t-flex t-justify-center"},children:[{$el:"span",attrs:{id:"progress-bar-text",class:"t-text-sm t-mb-1"},children:["0% Complete"]}]},{$el:"div",attrs:{class:"t-bg-gray-100 t-w-9/12 t-rounded"},children:[{$el:"div",attrs:{id:"progress-bar",class:"t-flex t-flex-col t-justify-center t-text-center t-whitespace-nowrap t-w-[10%] t-h-1.5 t-rounded t-text-white t-bg-[#007bff]",style:{transition:"width 0.5s ease"}}}]}]};const B=[{$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}],M={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 broke my arm at work and need help getting compensation"',"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"'},H={Adoption:"Connect With Adoption Professionals Today","Auto and Car Accidents":"Connect With Accident Professionals Today",Bankruptcy:"Take Control of Your Financial Future","Birth Certificate and Name Change":"Start Your Change Today","Business Lawyers":"Connect With Business Professionals Today","Child Custody":"Connect With Custody Professionals Today","Child Support":"Connect With Child Support Professionals","Civil Rights and Discrimination":"Stand Up For Your Rights","Civil Lawsuit":"Connect With Lawsuit Professionals Today","Copyrights and Trademarks":"Protect Your Intellectual Property","Debt and Collections":"Connect With Debt Professionals Today","Divorce and Separation":"Connect With Divorce Professionals Today","DUI and DWI":"Defend Against DUI Charges","Elder Law":"Connect With Elder Law Professionals",Expungement:"Clear Your Record","Family Issues":"Connect With Family Legal Help",Foreclosure:"Fight to Keep Your Home",Guardianship:"Connect With Guardianship Professionals","Immigration and Visas":"Get Immigration Legal Help",Insurance:"Get Insurance Legal Help","Lemon Law":"Connect With Lemon Law Professionals","Long Term Disability":"Connect With Disability Professionals","Medical Malpractice":"Hold Negligent Providers Accountable","Patents and Intellectual Property":"Connect With IP Professionals Today","Personal Injury":"Maximize Your Injury Compensation","Probate and Estates":"Manage Probate with Expert Guidance","Product Liability":"Get Justice for Faulty Products","Real Estate":"Connect With Real Estate Professionals","Sexual Harassment":"Stand Up Against Sexual Harassment","Social Security Disability and Insurance":"Get the Benefits You Deserve","Tax and IRS":"Connect With Tax Legal Help","Traffic and Tickets":"Protect Your Record Today",Unemployment:"Connect With Unemployment Professionals","Victim of a Crime":"Seek Justice as a Crime Victim","Wills and Trusts":"Plan Your Estate with Confidence","Workers Compensation":"Maximize Your Workers' Comp Benefits","Wrongful Death":"Seek Justice for a Loved One","Wrongful Termination":"Fight Back Against Unfair Firing Today"},q={},R=["haveAttorney","degreeOfInterest","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],Y=["haveAttorney","degreeOfInterest","lawyerPaymentMethod","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],N=["haveAttorney","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],U={values:{Type_Of_Legal_Problem:{Adoption:["maritalStatus","haveChildren",...Y],"Asbestos and Mesothelioma":["incidentDate","doctorTreatment",...R],"Auto and Car Accidents":["incidentDate","atFault","primaryInjury","doctorTreatment","policeReportFiled",...N],Bankruptcy:["totalMonthlyIncome","totalDebt","ownRealEstate","valueOfAssets",...R],"Business Lawyers":["businessServices","businessType","numEmployeesOfBusiness",...R],"Child Custody":["childRelationship","childHome","childPrimaryCaregiver",...Y],"Child Support":["childRelationship","childHome","childPrimaryCaregiver",...Y],"Civil Rights and Discrimination":["civilRightsType",...R],"Civil Lawsuit":["civilDefense","lawsuitOtherParty",...R],"File a Lawsuit":["civilLawsuitTOLPDisplay","lawsuitOtherParty",...R],"Defend a Lawsuit":["lawsuitOtherParty",...R],"Consumer Lawyers":["consumerLawyerType","incidentDate","lawsuitOtherParty",...R],"Criminal and Felony":["criminalTOLPDisplay","crimeCommittedDate","roleInMatterCriminal","pendingCharges",...Y],"Debt and Collections":["totalMonthlyIncome","totalDebt","ownRealEstate","valueOfAssets",...R],"Divorce and Separation":["maritalStatus","haveChildren",...Y],"DUI and DWI":["incidentDate","priorAlcoholOffenses","typeOfAlcoholTest","bloodContentAlcoholTest","pendingCharges",...R],"Employment and Workplace":["employmentAndWorkplaceTOLPDisplay","numEmployeesOfBusiness","employerType","employeeAtCompany",...R],Expungement:["incidentDate","criminalChargeType",...Y],"Family Issues":["maritalStatus","haveChildren",...Y],Foreclosure:["ownRealEstate","typeOfProperty","amountPaymentsPastDue","loanAmount","defaultNotice",...R],Guardianship:["maritalStatus","haveChildren",...Y],"Immigration and Visas":["countryOfCitizenship","immigrationLocation","immigrationEntry","immigrationType","immigrationStatus","immigrationDetails",...R],"Landlord and Tenant":["landlordTenantIssue","landlordTenantParty",...R],"Lemon Law":["incidentDate","lawsuitOtherParty",...R],"Long Term Disability":["applicantOccupation","applicantAge","applicantLTDisabilityPolicy","applicantDisabilityHowObtain","applicantPreviouslyAppliedLtdBenefits","applicantReceivedDisabilityBenefits","applicantMonthlySalary",...N],"Medical Malpractice":["incidentDate","claimStatus","doctorTreatment","medicalMalpracticeInjuries",...R],"Patents and Intellectual Property":["patentAssistanceType","patentFor",...R],"Personal Injury":["incidentDate","claimStatus","atFault","primaryInjury","doctorTreatment",...N],"Probate and Estates":["valueOfAssets","typeOfAssets","roleInMatterProbate","estateLegalServicesNeeded",...R],"Property Damage":["wouldLikeLawyerTo",...R],"Real Estate":["realEstateTOLPDisplay","realEstateArea","wouldLikeLawyerTo",...R],"Social Security Disability and Insurance":["applicantAge","disabilityConditionStopWork","disabilityWorkHistory","socialSecurityDisabilityReceivingBenefits","doctorTreatment",...N],"Tax and IRS":["totalDebt","taxProblemDetails","taxLevel","taxIssueType",...R],"Traffic and Tickets":["driversLicenseType","trafficViolations","haveCourtDate",...R],Unemployment:["numEmployeesOfBusiness","employerType","degreeOfInterest","commentsWithBankruptcy","zipcode","legalCrossSells","firstAndLast","contactInfo"],"Victim of a Crime":["crimeCommittedDate","roleInMatterCriminal","pendingCharges",...Y],"Wills and Trusts":["valueOfAssets","typeOfAssets","roleInMatterProbate","estateLegalServicesNeeded",...R],"Workers Compensation":["incidentDate","claimStatus","primaryInjury","causeOfInjury","doctorTreatment",...N],"Workplace Harassment":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R],"Workplace Discrimination":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R],"Wrongful Death":["incidentDate","relationshipToVictim","criminalChargesFiled","causeOfDeath",...N],"Wrongful Termination":["numEmployeesOfBusiness","employerType",...R]},"*":R}};function z(e,t=[],a={}){const i={...e};return i.values=function e(i){const n={};for(const s in i)Array.isArray(i[s])?n[s]=i[s].filter((e=>!t.includes(e))).map((e=>a[e]||e)):"object"==typeof i[s]?n[s]=e(i[s]):n[s]=i[s];return n}(e.values),i}z(U,["legalCrossSells"],{commentsWithBankruptcy:"comments"});const V=U.values.Type_Of_Legal_Problem;V["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),V["Workers Compensation"].filter((e=>"legalCrossSells"!==e)),V["Personal Injury"].filter((e=>"legalCrossSells"!==e)),V["Personal Injury"].filter((e=>"legalCrossSells"!==e)),V["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),V["Auto and Car Accidents"].filter((e=>"legalCrossSells"!==e)),V["Personal Injury"].filter((e=>"legalCrossSells"!==e)),V["Personal Injury"].filter((e=>"legalCrossSells"!==e)),V["Child Custody"],V["Child Support"],U.values["*"],V["Family Issues"],V["Child Support"],V["Child Custody"],U.values["*"],V["Divorce and Separation"],V["Defend a Lawsuit"],V["File a Lawsuit"];z({values:{Type_Of_Legal_Problem:{"Defend a Lawsuit":V["Defend a Lawsuit"],"File a Lawsuit":V["File a Lawsuit"]},"*":["lawsuitOtherParty",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});z({values:{Type_Of_Legal_Problem_Display:{"Automobile Accident":V["Auto and Car Accidents"],"Contract Disputes":V["Business Lawyers"],"Dog Bite":V["Personal Injury"],"Employment and Workplace":V["Employment and Workplace"],Fraud:V["Consumer Lawyers"],"Medical Malpractice":V["Medical Malpractice"],"Personal Injury":V["Personal Injury"],"Property Damage":V["Property Damage"],"Real Estate":V["Real Estate"],"Not Sure or Other":U.values["*"]},"*":["lawsuitOtherParty",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});z({values:{Type_Of_Legal_Problem_Display:{"Victim of a Crime":V["Victim of a Crime"],"DUI and DWI":V["DUI and DWI"],Expungement:V.Expungement,"Not Sure or Other":U.values["*"]},"*":["crimeCommittedDate","roleInMatterCriminal","pendingCharges",...Y]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});z({values:{Type_Of_Legal_Problem_Display:{"Wrongful Termination":V["Wrongful Termination"],"Workers Compensation":V["Workers Compensation"],"Personal Injury":V["Personal Injury"],Unemployment:V.Unemployment},"*":["numEmployeesOfBusiness","employerType","employeeAtCompany",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"}),V["Workplace Harassment"],V["Workplace Discrimination"],V["Probate and Estates"],V["Wills and Trusts"],V["Wrongful Death"],V["Patents and Intellectual Property"],V["Business Lawyers"],V["Business Lawyers"],U.values["*"];z({values:{Type_Of_Legal_Problem_Display:{Foreclosure:V.Foreclosure,"Landlord and Tenant":V["Landlord and Tenant"],"Wills, Trusts, and Estates":V["Wills and Trusts"],"Property Damage":V["Property Damage"]},"*":["realEstateArea","wouldLikeLawyerTo",...R]}},["legalCrossSells"],{commentsWithBankruptcy:"comments"});const Z=[function(a=null){let i=M,n=H,s=q;return a&&(i=W(M,a),n=W(H,a),s=W(q,a)),{type:"meta",data:e(O,{tcpaLanguage:'By checking this box, I agree to the Terms of Use and consent to be contacted by <a href="/providers" target="_blank">lawyers, lawyer networks, and partners</a> of this website using live, autodialed, pre-recorded, or artificial voice calls and text messages, at any time including before 8 AM or after 9 PM local time. 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:i,defaultFinalHeadline:"Connect With The Legal Help You Deserve",finalHeadlines:n,defaultFinalSubHeadline:"Get a no-obligation consultation with a legal expert.",finalSubHeadlines:s})}}(),e(F,G),{$cmp:"FormKit",props:function(t){const a=e(_,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"ssdi",redirectMap:{"*":"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}"}}),children:[function(t){return e(j,t)}(),function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center t-text-[1.7rem] sm: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", "Start Your FREE Case Evaluation")',if:"$activeStep === $firstStep()",headlineClass:"!t-text-dark"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center t-text-[1.1rem] md:t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 t-pb-3 "+(e.subheadlineClass||"")+" f-first-subheadline"}}}(t),t)}({children:'$urlParam("shl", "Receive up to $4,018 Per Month!")',if:"$activeStep === $firstStep()",subheadlineClass:"!t-text-[#00428A]"}),...B,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return L("ssdiTOLPAndZip",[{$formkit:"hidden",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",value:"Social Security Disability and Insurance"},f(e.scope,!0,e.input)],e)}(),function(e={}){return L("ssdiApplicantAge",[P(e),y(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"What is the Age of the Applicant?"}),function(e={}){return L("ssdiDisabilityConditionStopWork",[P(e),g(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"}),function(e={}){return L("ssdiDisabilityWorkHistory",[P(e),x(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Have You Had a Full-Time Job Within the Past 5 Years?"}),function(e={}){return L("ssdiSocialSecurityDisabilityReceivingBenefits",[P(e),v(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Are You Currently Receiving Social Security Disability Benefits?"}),function(e={}){return L("ssdiDoctorTreatment",[P(e),b(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"}),function(e={}){return L("ssdiHaveAttorney",[P(e),C(e.scope,!0,e.input)],e)}({nextOnInput:!0,headline:"Already Working with An Attorney?"}),function(e={}){const a={...e,nextOnEnter:!1};return L("comments",[E(e),h(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,innerClass:void 0===e.innerClass?"t-max-w-xl":e.innerClass,wrapperClass:void 0===e.wrapperClass?void 0:e.wrapperClass})],a)}({label:null,headline:"Please briefly describe your situation:",headlineClass:"!t-text-dark"}),function(e={}){return L("firstAndLast",[T({headline:e.headline??"Who is looking for help?",headlineClass:e.headlineClass}),{$el:"div",attrs:{class:"t-flex t-flex-col t-justify-center t-items-center t-pt-3"},children:[m(e.scope)]}],e)}({headlineClass:"!t-text-dark"}),function(e={}){return L("contactInfo",[D(e),A(e),{$el:"script",if:"$activeStep === $lastStep()",children:"(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})();"},{$el:"div",attrs:{class:"t-flex t-flex-col t-justify-center t-items-center"},children:[d(e.scope,{outerClass:"!t-max-w-[95%] !t-w-[96%] sm:!t-w-[70%]",innerClass:"!t-w-[98%] !t-max-w-[98%] sm:!t-w-[100%] sm:!t-max-w-[100%]"}),u(e.scope,{outerClass:"!t-max-w-[95%] !t-w-[96%] sm:!t-w-[70%]",innerClass:"!t-w-[98%] !t-max-w-[98%] sm:!t-w-[100%] sm:!t-max-w-[100%]"})]},w(e.scope,{outerClass:"!t-flex !t-flex-col !t-justify-center !t-items-center",wrapperClass:"t-w-[95%] sm:t-w-[80%]",messagesClass:"t-w-[95%] sm:t-w-[80%]"})],{nextOnEnter:!1})}({headline:"Submit Your Free Application",headlineClass:"!t-text-[#00428A]",subheadline:"Based on your input you may qualify for SSDI benefits. Please verify your contact information."}),((e={})=>({$el:"div",attrs:{class:{if:"$activeStep === $firstStep()",then:"step-nav "+(e.firstStepButtonClass||"!t-justify-center sm:!t-justify-between"),else:{if:"$activeStep === $lastStep()",then:"step-nav !t-justify-center ",else:"step-nav !t-justify-between"}}},children:[{$formkit:"button",name:"back_button",onClick:"$setPreviousStep($prevStepFunc($get(form)))",children:"Back",outerClass:{if:"$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",then:"t-hidden sm:t-block",else:""},style:{if:"$fns.eq($activeStep, $firstStep()) || $fns.eq($activeStep, $lastStep())",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||"")+" f-navigation-input !t-w-60",outer:"!t-mt-0 !t-mb-0"}}]}))({inputClass:"!t-font-extrabold",firstStepButtonClass:"!t-justify-center"}),function(e={}){return{if:"$activeStep === $lastStep()",style:{if:"$activeStep !== $lastStep()",then:"display: none;"},children:[k({attrs:{class:"t-flex t-justify-center t-items-center t-text-sm t-text-gray-500 t-pb-6 sm:t-pb-8"},...e})]}}(),{$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 G;return Z}();
|