-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
955 lines (945 loc) · 41 KB
/
index.html
File metadata and controls
955 lines (945 loc) · 41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<link rel="stylesheet" href="css/site.css" />
<link rel="icon" type="image/png" href="img/svg/favicon.svg" />
<link rel="shortcut icon" href="img/svg/favicon.svg" />
<link rel="apple-touch-icon" href="img/svg/favicon.svg" />
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js"></script>
<script src="https://webservices.data-8.co.uk/javascript/loader.ashx?key=BKAS-XMQQ-JFZT-YBY8&load=PhoneValidation,EmailValidation"></script>
</head>
<body id="reset">
<section class="first overflow-hidden varied_padding">
<form id="step_1_form" novalidate>
<div class="step" id="step_1">
<div class="wrap mobile_full">
<div class="flex-container seventy-thirty center-vertically">
<fieldset class="box border-blue-3d shadow-black">
<label class="h5 margin-15"
>Who supplies your business energy?</label
>
<p class="text-size-smaller">
Suggestions will appear as you type
</p>
<div class="field">
<div class="field-icon aligned-button energy">
<input
type="text"
name="energy_supplier"
class="energy_supplier_list text-capitalise-first-letter"
placeholder="Business energy supplier"
/>
<span class="button background-green smaller next">
Check your claim
</span>
</div>
<span class="error primary"
>Please provide who supplies your business energy</span
>
</div>
<span></span>
Great news! OFGEM now mandates energy brokers to reimburse any
concealed commissions they charged you. If you're a UK-based
business,<b> you can easily verify your eligibility for a refund
in just 60 seconds.</b>
</span
>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</fieldset>
</div>
</div>
<div class="wrap">
<p
class="margin-none indented-text-right text-size-smallest mobile_show"
>
OFGEM have finally made energy brokers pay back their hidden
commissions charged to you. If you're a business in the UK,
<strong
>find out if you're owed a refund in just 60 seconds</strong
>
</p>
</div>
</div>
<div class="step" id="step_2">
<div class="wrap larger mobile_full">
<div
class="flex-container padding-none dynamic-height sixty-forty border-radius border-blue-3d shadow-black"
>
<div class="column">
<fieldset class="box padding-100-top-bottom form-left">
<div class="progress">
<div class="progress-bar">
<div style="width: 0%"></div>
</div>
</div>
<p class="h2 margin-25">About your business energy</p>
<div class="field">
<p class="margin-35 mobile_hide">
To continue with the claim verification process, we need specific information about your business. Please provide the name of your business below and click on
<strong class="border-bottom-double-yellow"
>'Find my business'</strong
>
</p>
<label class="h6 margin-5">Type of utility</label>
<p class="margin-15 text-size-smaller">
Make a selection below
</p>
<ul class="options two">
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_utility_type"
id="energy_utility_type_1"
value="Gas"
/>
<label for="energy_utility_type_1"> Gas </label>
</li>
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_utility_type"
id="energy_utility_type_2"
value="Water"
/>
<label for="energy_utility_type_2"> Water </label>
</li>
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_utility_type"
id="energy_utility_type_3"
value="Electric"
/>
<label for="energy_utility_type_3"> Electric </label>
</li>
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_utility_type"
id="energy_utility_type_4"
value="Gas & Electric"
/>
<label for="energy_utility_type_4">
Gas & Electric
</label>
</li>
</ul>
<span class="error primary"
>Please select the type of utility</span
>
</div>
<div class="field">
<label class="h6 margin-5"
>Did the broker specify if commission would be added to
each unit of energy you paid for?</label
>
<p class="margin-15 text-size-smaller">
Make a selection below
</p>
<ul class="options two">
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_broker_commission"
id="energy_broker_commission_1"
value="Yes"
/>
<label for="energy_broker_commission_1"> Yes </label>
</li>
<li>
<input
type="radio"
class="custom-checkbox"
name="energy_broker_commission"
id="energy_broker_commission_2"
value="No"
/>
<label for="energy_broker_commission_2"> No </label>
</li>
</ul>
<span class="error primary"
>Please select whether the broker made you aware that
commission would be added</span
>
</div>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<span class="button background-none full back">
<i class="fa-solid fa-chevron-left"></i> Go back
</span>
</div>
<div class="column">
<span class="button background-green full next">
Next
</span>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</fieldset>
</div>
<div class="column">
<div
class="box background-grey padding-100-top-bottom form-right select-none"
>
<div class="section">
<p class="h6 text-weight-400">
Essential Factors to Keep in Mind for Your Business Energy
Claim
</p>
</div>
<div class="section">
<div
class="basic-list check-bullets text-size-smaller margin-none"
>
<ul>
<li>
The potential value of your claim could be
<strong class="border-bottom-yellow"
>£10,000s
</strong>
</li>
<li>
OFGEM has mandated energy brokers to reimburse their
<strong class="border-bottom-yellow"
>hidden commissions</strong
>
</li>
<li>
If you have fallen victim to a
<strong class="border-bottom-yellow">mis-sold</strong>
business energy deal, you may be eligible for
compensation to cover the due losses.
</li>
<li>
British business owners could potentially experience a
<strong class="border-bottom-yellow">fourfold</strong>
rise in their business energy costs compared to what
they paid in 2020.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="step" id="step_3">
<div class="wrap larger mobile_full">
<div
class="flex-container padding-none dynamic-height sixty-forty border-radius border-blue-3d shadow-black"
>
<div class="column">
<fieldset class="box padding-100-top-bottom form-left">
<div class="progress">
<div class="progress-bar">
<div style="width: 25%"></div>
</div>
</div>
<p class="h2 margin-15">About your business</p>
<p class="margin-35 mobile_hide">
To proceed with the claim verification process, we require
some specific information about your business. Kindly
provide the name of your business below and click on
<strong class="border-bottom-double-yellow"
>'Find my business'</strong
>
</p>
<div class="field">
<label class="h6 margin-5"
>Enter the name of your business</label
>
<p class="text-size-smaller">
Kindly input the complete name of your business and
<strong class="border-bottom-double-yellow"
>NOT your energy supplier</strong
>
</p>
<div class="field">
<div class="field-icon aligned-button company">
<input
type="text"
name="company_name_input"
class="text-capitalise-first-letter"
placeholder="Name of your business"
/>
<span
class="button background-green smaller"
id="company_search"
>
Find my business
</span>
</div>
<span class="error primary"
>Please enter the name of your business and click 'Find
my business'</span
>
</div>
</div>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<span class="button background-none full back">
<i class="fa-solid fa-chevron-left"></i> Go back
</span>
</div>
<div class="column"></div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</fieldset>
</div>
<div class="column">
<div
class="box background-grey padding-100-top-bottom form-right select-none"
>
<div class="section">
<p class="h6 text-weight-400">
Essential Factors to Keep in Mind for Your Business Energy
Claim considerations regarding your business energy claim
</p>
</div>
<div class="section">
<div
class="basic-list check-bullets text-size-smaller margin-none"
>
<ul>
<li>
The potential value of your claim could be
<strong class="border-bottom-yellow">£10,000s</strong>
</li>
<li>
OFGEM has mandated energy brokers to reimburse their
<strong class="border-bottom-yellow"
>hidden commissions</strong
>
</li>
<li>
If you have fallen victim to a
<strong class="border-bottom-yellow">mis-sold</strong>
business energy deal, you may be eligible for
compensation to cover the due losses.
</li>
<li>
British business owners could potentially experience a
<strong class="border-bottom-yellow">fourfold</strong>
rise in their business energy costs compared to what
they paid in 2020.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="step" id="step_4">
<div class="wrap larger mobile_full">
<div
class="flex-container padding-none dynamic-height sixty-forty border-radius border-blue-3d shadow-black"
>
<div class="column">
<fieldset class="box padding-100-top-bottom form-left">
<div class="progress">
<div class="progress-bar">
<div style="width: 50%"></div>
</div>
</div>
<p class="h2 margin-25">Information about you</p>
<div class="field two retain">
<div class="field">
<label class="h6 margin-5">Title</label>
<select name="title">
<option disabled selected value>—</option>
<option value="Mr">Mr</option>
<option value="Mrs">Mrs</option>
<option value="Ms">Ms</option>
<option value="Miss">Miss</option>
<option value="Dr">Dr</option>
<option value="Other">Other</option>
</select>
<span class="error primary"
>Please select your title</span
>
</div>
</div>
<div class="field two">
<div class="field">
<label class="h6 margin-5">First name</label>
<div class="field-icon">
<input
type="text"
name="fname"
class="text-capitalise-first-letter"
placeholder="First name"
/>
</div>
<span class="error primary"
>Please enter your first name</span
>
</div>
<div class="field">
<label class="h6 margin-5">Last name</label>
<div class="field-icon">
<input
type="text"
name="lname"
class="text-capitalise-first-letter"
placeholder="Last name"
/>
</div>
<span class="error primary"
>Please enter your last name</span
>
</div>
<input type="hidden" name="fname_clean" value="" />
<input type="hidden" name="lname_clean" value="" />
</div>
<div class="field">
<label class="h6 margin-5">Date of birth</label>
<p class="margin-15 text-size-smaller">
Enter in the format DD/MM/YYYY
</p>
<div class="field-icon date">
<input
type="text"
name="date_of_birth"
class="date_input"
inputmode="numeric"
placeholder="DD/MM/YYYY"
/>
</div>
<span class="error primary"
>Please enter a valid date (DD/MM/YYYY)</span
>
<span class="error secondary"
>Your date of birth cannot be in the future</span
>
<span class="error tertiary"
>You must be at least 18 years old to claim</span
>
</div>
<div class="field">
<label class="h6 margin-5"
>Your job title at <span class="company_name_pull"></span
></label>
<p class="margin-15 text-size-smaller">
Suggestions will appear as you type
</p>
<div class="field-icon">
<input
type="text"
name="company_job_title"
class="job_title_list text-capitalise-first-letter"
placeholder="Job title"
/>
</div>
<span class="error primary"
>Please enter your job title at
<span class="company_name_pull"></span
></span>
</div>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<span class="button background-none full back">
<i class="fa-solid fa-chevron-left"></i> Go back
</span>
</div>
<div class="column">
<span class="button background-green full next">
Next
</span>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</fieldset>
</div>
<div class="column">
<div
class="box background-grey padding-100-top-bottom form-right select-none"
>
<div class="section">
<p class="h6 text-weight-400">
Essential Factors to Keep in Mind for Your Business Energy
Claim considerations regarding your business energy claim
</p>
</div>
<div class="section">
<div
class="basic-list check-bullets text-size-smaller margin-none"
>
<ul>
<li>
The potential value of your claim could be
<strong class="border-bottom-yellow">£10,000s</strong>
</li>
<li>
OFGEM has mandated energy brokers to reimburse their
<strong class="border-bottom-yellow"
>hidden commissions</strong
>
</li>
<li>
If you have fallen victim to a
<strong class="border-bottom-yellow">mis-sold</strong>
business energy deal, you may be eligible for
compensation to cover the due losses.
</li>
<li>
British business owners could potentially experience a
<strong class="border-bottom-yellow">fourfold</strong>
rise in their business energy costs compared to what
they paid in 2020.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="step" id="step_5">
<div class="wrap larger mobile_full">
<div
class="flex-container padding-none dynamic-height sixty-forty border-radius border-blue-3d shadow-black"
>
<div class="column">
<fieldset class="box padding-100-top-bottom form-left">
<p class="h6 margin-5 text-weight-400 text-color-green">
Thank you,
<span class="fname_pull text-capitalise-first-letter"></span
>. We trust you're enjoying a delightful
<span class="time_of_day"></span>
</p>
<p class="h2 margin-15">Your contact information</p>
<p class="margin-35 mobile_hide">
To keep you informed about the progress of your claim, we kindly request your email address and telephone number.
</p>
<div class="field">
<label class="h6 margin-5">Email address</label>
<p class="margin-15 text-size-smaller">
So we can keep you up to date about your claim via email
</p>
<div class="field-icon email">
<input
type="email"
name="email_address"
placeholder="Email address"
/>
</div>
<span class="error primary"
>Please enter your email address</span
>
<span class="error secondary"
>This email address does not appear to be valid</span
>
<span class="email_validation_error">
This email address doesn't look valid.<span
class="suggested_fix_conditional"
>
<span class="suggested_fix"></span>.</span
>
Would you like to fix?
<span class="suggested_fix_apply"
>Yes, fix my email address</span
>
</span>
<input
type="hidden"
name="validate_email_address"
value=""
/>
</div>
<div class="field">
<label class="h6 margin-5">Mobile telephone number</label>
<p class="margin-15 text-size-smaller">
So we can keep you up to date about your claim via SMS
</p>
<div class="field-icon telephone">
<input
type="tel"
name="telephone_number"
class="numbers_only"
placeholder="Mobile telephone number"
/>
</div>
<span class="error primary"
>Please enter a valid mobile telephone number</span
>
<span class="error secondary"
>This telephone number does not appear to be valid</span
>
<input
type="hidden"
name="validate_telephone_number"
value=""
/>
</div>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<span class="button background-none full back">
<i class="fa-solid fa-chevron-left"></i> Go back
</span>
</div>
<div class="column">
<button
type="submit"
class="button background-green full submit"
>
Next
</button>
</div>
<input
type="hidden"
name="page_brand"
value="energyclaimsexperts.co.uk"
/>
<input
type="hidden"
name="campaign_source"
id="campaign_source"
value="unknown"
/>
<input
type="hidden"
name="utm_source"
id="utm_source"
value=""
/>
<input
type="hidden"
name="utm_medium"
id="utm_medium"
value=""
/>
<input
type="hidden"
name="utm_campaign"
id="utm_campaign"
value=""
/>
<input
type="hidden"
name="utm_content"
id="utm_content"
value=""
/>
<input type="hidden" name="product" value="44" />
<input
type="hidden"
name="redirect_url"
value="https://energyclaimsexperts.co.uk/step-signature.html"
/>
<input
type="hidden"
name="redirect_with_data"
id="redirect_with_data"
value="1"
/>
<input type="hidden" name="company_name" value="" />
<input type="hidden" name="company_number" value="" />
<input type="hidden" name="company_type" value="" />
<input type="hidden" name="company_premises" value="" />
<input type="hidden" name="company_line_1" value="" />
<input type="hidden" name="company_region" value="" />
<input type="hidden" name="company_locality" value="" />
<input type="hidden" name="company_postcode" value="" />
<input type="hidden" id="validate_step_5" value="" />
</div>
<div class="opt-in">
<p class="text-size-smallest-promise margin-none">
<i class="fa-solid fa-lock-keyhole"></i> Your personal
information will be treated carefully in accordance with
our
<a
class="link privacy_policy_modal"
onclick="onClickPrivacyPolicy()"
>privacy policy</a
>
</p>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</div>
<div class="loading-step">
<div class="loading-spinner"></div>
<div class="overlay"></div>
</div>
</fieldset>
</div>
<div class="column">
<div
class="box background-grey padding-100-top-bottom form-right select-none"
>
<div class="section">
<p class="h6 text-weight-400">
Essential Factors to Keep in Mind for Your Business Energy
Claim considerations regarding your business energy claim
</p>
</div>
<div class="section">
<div
class="basic-list check-bullets text-size-smaller margin-none"
>
<ul>
<li>
The potential value of your claim could be
<strong class="border-bottom-yellow">£10,000s</strong>
</li>
<li>
OFGEM has mandated energy brokers to reimburse their
<strong class="border-bottom-yellow"
>hidden commissions</strong
>
</li>
<li>
If you have fallen victim to a
<strong class="border-bottom-yellow">mis-sold</strong>
business energy deal, you may be eligible for
compensation to cover the due losses.
</li>
<li>
British business owners could potentially experience a
<strong class="border-bottom-yellow">fourfold</strong>
rise in their business energy costs compared to what
they paid in 2020.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</section>
<div class="modal" id="company_confirmation_modal">
<div class="flex-container wrap smaller">
<div class="column">
<div class="field-outside margin-25" id="company_select_container">
<p
class="box inline padding-25 background-white border-blue-3d margin-15 text-color-blue"
>
<strong
><i class="fa-solid fa-magnifying-glass"></i> You searched: </strong
><span
class="background-yellow text-capitalise-first-letter company_name_pull"
></span>
</p>
<p class="h4 margin-15">Select your business</p>
<p>
We have gathered results from Companies House and we now need you
to confirm which business is yours
</p>
<select
class="select animation-yellow-flash-infinite"
id="company_select"
>
<option disabled selected value="0">Select your business</option>
</select>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<strong class="link border-none company_none_apply">
<i class="fa-solid fa-xmark text-color-red"></i> None of
these are my company
</strong>
</div>
<div class="column"></div>
</div>
</div>
</div>
<div class="field-outside margin-none hide" id="company_confirmation">
<p class="h4 margin-15">Verification of your business details</p>
<p>
To ensure accuracy, please verify that the information provided
about your business below is correct.
</p>
<div class="summary margin-25">
<div class="box background-grey border-blue-3d">
<div class="flex-container two-col padding-none">
<div class="column">
<strong class="text-color-blue">Company name:</strong>
</div>
<div class="column margin-15">
<span
class="company_name_pull text-capitalise-first-letter margin-5"
></span>
</div>
</div>
<div class="flex-container two-col padding-none">
<div class="column">
<strong class="text-color-blue">Company address:</strong>
</div>
<div class="column margin-15">
<span class="address-field company_premises_pull"></span>
<span class="address-field company_line_1_pull"></span>
<span class="address-field company_region_pull"></span>
<span class="address-field company_locality_pull"></span>
<span class="address-field company_postcode_pull"></span>
</div>
</div>
<div class="flex-container two-col padding-none">
<div class="column">
<strong class="text-color-blue"
>Company registration number:</strong
>
</div>
<div class="column">
<span class="margin-none company_number_pull"></span>
</div>
</div>
</div>
</div>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<strong class="link border-none" id="company_incorrect_info">
<i class="fa-solid fa-xmark text-color-red"></i> No, this is
not my company
</strong>
</div>
<div class="column">
<span
class="button background-green full company_confirm_correct"
>
Yes, this is correct
</span>
</div>
</div>
</div>
</div>
<div class="field-outside margin-none hide" id="company_reject_name">
<p class="h4 margin-15">Are you sure this is correct?</p>
<p class="h6">
You have selected a business that contains, or partly contains the
name of a well known company for business energy
</p>
<p
class="box inline padding-25 background-white border-blue-3d margin-25 text-color-blue"
>
<strong>You selected: </strong
><span
class="background-yellow text-capitalise-first-letter company_name_pull"
></span>
</p>
<p>
<strong class="border-bottom-double-yellow"
>We are asking you for the name of your own business</strong
>, not who supplies your business's energy. You have already
provided that
</p>
<p>
If your own business name does contain, or partly contains the
name of a business energy provider, then please click
<strong class="border-bottom-double-yellow"
>'Yes, this is correct'</strong
>
below
</p>
<p class="margin-15">
If you need to start again and enter the name of your own
business, click
<strong class="border-bottom-double-yellow"
>'No, search again'</strong
>
</p>
<div class="form-navigation">
<div
class="flex-container two-col padding-none center-vertically"
>
<div class="column">
<strong class="link border-none company_confirm_correct">
<i class="fa-solid fa-circle-check text-color-green"></i>
Yes, this is correct
</strong>
</div>
<div class="column">
<span class="button background-green full company_none_apply">
No, search again
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="loading-page">
<div class="contents">
<div class="logo">
<img src="img/svg/logo.svg" alt="" />
</div>
<p class="h3 text-align-center">Finding your company</p>
<div class="loading-spinner inline"></div>
</div>
<div class="overlay"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/moment@2.29.4/moment.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery-ui-dist@1.13.1/jquery-ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery-mask-plugin@1.14.16/dist/jquery.mask.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.viewport@1.0.1/jquery.viewport.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="js/form-questions.js"></script>
<script src="js/site-functions.js"></script>
<script src="js/site-modals.js"></script>
<script src="https://cdn.jsdelivr.net/npm/emailjs-com@2.3.2/dist/email.min.js"></script>
<script>
function onClickPrivacyPolicy(){
window.open('https://www.claimy.uk/policy/privacy-policy')
}
</script>
</body>
</html>