-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMembersDirectory.html
1055 lines (919 loc) · 71.4 KB
/
MembersDirectory.html
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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MXM93Z8');</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5" />
<link href="Content/fonts/silka-regular-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-medium-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-semibold-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link href="Content/fonts/silka-bold-webfont.woff" rel="preload" as="font" type="font/woff" crossorigin />
<link rel="home" id="ApplicationPath" href="index.html" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script type="text/javascript">window.paceOptions = { startOnPageLoad: false, ajax: { trackMethods: [], trackWebSockets: false, ignoreURLs: [] } };</script>
<title>Member Directory - All Forward</title>
<meta name="description" content="Our search engine allows you to find the perfect partner in any country for any type of shipment. You can use other members' ratings and our Trust Score metric to get detailed information on potential agents to make sure that they are reliable, experienced and suited to your needs.">
<meta property="og:site_name" content="All-Forward">
<meta property="og:url" content="https://www.all-forward.com/MembersDirectory" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:title" content="MEMBER DIRECTORY" />
<meta name="twitter:title" content="MEMBER DIRECTORY">
<meta property="og:description" content="Finding the ideal partner has never been easier" />
<meta name="twitter:description" content="Finding the ideal partner has never been easier">
<meta property="og:image" content="Content/images/commercial/md-bg.jpeg" />
<meta name="twitter:image" content="Content/images/commercial/md-bg.jpeg">
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css"/>
</head>
<body ng-app="AllForward" ng-cloak ng-controller="CommercialController">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MXM93Z8"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<link href="DynJS.axd/CssBundle.Base%EF%B9%96v=gSxZ2sWrAy9Cio8GqoWJvw2.css" rel="stylesheet" type="text/css"/>
<script src="DynJS.axd/Bundle.Base%EF%B9%96v=3krHtmnUHhzkM5mDeXO-Aw2.js" type="text/javascript"></script>
<script src="DynJS.axd/Bundle.Configuration%EF%B9%96v=yFifqqFBdhA5n8_MhDL42w2.js" type="text/javascript"></script>
<script type="text/javascript">
Q.ScriptData.set('Lookup.Administration.Language', new Q.Lookup({"idField":"LanguageId","textField":"LanguageName"},
[{"Id":6,"LanguageId":"zh-CN","LanguageName":"Chinese (Simplified)"},{"Id":1,"LanguageId":"en","LanguageName":"English"},{"Id":5,"LanguageId":"de","LanguageName":"German"},{"Id":12,"LanguageId":"he","LanguageName":"Hebrew"},{"Id":7,"LanguageId":"it","LanguageName":"Italian"},{"Id":8,"LanguageId":"pt","LanguageName":"Portuguese"},{"Id":9,"LanguageId":"pt-BR","LanguageName":"Portuguese (Brazil)"},{"Id":2,"LanguageId":"ru","LanguageName":"Russian"},{"Id":3,"LanguageId":"es","LanguageName":"Spanish"},{"Id":4,"LanguageId":"tr","LanguageName":"Turkish"},{"Id":11,"LanguageId":"vi-VN","LanguageName":"Vietnamese (Vietnam)"}]
));
Q.ScriptData.setRegisteredScripts({"Template.PropertyDialog":0,"Lookup.CurrenciesLookup":0,"Form.Membership.ResetPassword":0,"Form.SiteManagement.WebContentTeams":0,"Form.Administration.PriceDetails":0,"Columns.SiteManagement.WebContentClients":0,"Lookup.RoleLookup":0,"Lookup.Administration.Role":0,"Columns.Administration.FreeShipperQuotes":0,"Bundle.Client":"8NQbAyL59Tv-h7gkngT8QA2","Columns.Administration.Leads":0,"Lookup.UnitTypesLookup":0,"Columns.SiteManagement.WebContentEmailLogs":0,"Columns.Administration.SystemCarriers":0,"Lookup.SystemCarriersLookup":"rxrWc8pdGxjIKSMvWF8lAA2","Template.Administration.QuotesDialog":0,"Columns.Administration.ChargingUnits":0,"Columns.Administration.OceanFreightIndex":0,"Lookup.EmailParametersLookup":0,"Columns.Administration.StandardText":0,"Form.Administration.Ports":0,"Form.Administration.Goods":0,"Form.SiteManagement.WebContentQuations":0,"CssBundle.Site":"px98JYmk3P4Fo2cpBR4Fvw2","Columns.Administration.Companies":0,"Form.Administration.CompaniesIpn":0,"Form.Administration.User":0,"Form.Administration.NetworkComments":0,"TemplateBundle":0,"Columns.Administration.FreightDictionary":0,"Lookup.LanguagesLookup":0,"Form.Administration.OceanFreightIndex":0,"Columns.Administration.SpotRateConfiguration":0,"Columns.SiteManagement.WebContentFeedBacks":0,"Lookup.Administration.Language":"i28GxBTKrv13jT7Tei2NFQ2","Columns.Administration.CompanyFreightoolsConnections":0,"FormBundle":0,"Columns.Administration.Goods":0,"Columns.SiteManagement.WebContentTeams":0,"Form.Administration.FreeShipperQuotes":0,"Form.Administration.SpecialOffers":0,"Columns.Administration.User":0,"Form.Administration.Currencies":0,"CssBundle.Client":"gtQ2mY8HzJW5MuITSWApGw2","Form.Membership.ChangePassword":0,"Columns.Administration.CrmActivities":0,"Columns.Administration.Branches":0,"Lookup.PortsLookup":"5BfUE-N_8FCgVaDPjTUHaA2","Columns.Administration.ExchangeRates":0,"Lookup.FreightoolsConnectionsLookup":0,"Columns.Administration.CompaniesIpn":0,"Form.Administration.ScheduleSearchLogs":0,"Form.SiteManagement.WebContentTabs":0,"Form.Administration.SpotRates":0,"Form.Administration.Role":0,"Bundle.Pages/Dashboard":0,"Form.Administration.QuotesLogs":0,"Template.Administration.CompaniesDialog":0,"Columns.SiteManagement.WebContentTabs":0,"Form.Administration.EmailParameters":0,"Template.Administration.TrustScoresDialog":0,"Lookup.ServicesLookup":"uZ8G1s2QU7r6pav2j-HXDQ2","Lookup.ChargingUnitsLookup":0,"Form.Administration.Tags":0,"Lookup.BranchesLookup":0,"Lookup.PriceDetailsLookup":0,"Form.Administration.UnitTypes":0,"Lookup.UserLookup":0,"Form.Administration.ExchangeRates":0,"Columns.SiteManagement.WebContentPlans":0,"Form.Administration.NetworkLikes":0,"Lookup.PublicEmailDomainsLookup":0,"Form.Administration.Leads":0,"Columns.Administration.Ports":0,"Form.SiteManagement.WebContentFeedBacks":0,"Form.Membership.Login":0,"Form.Administration.StandardText":0,"Columns.Administration.NetworkNews":0,"Lookup.CompaniesLookup":0,"CssBundle.Base":"gSxZ2sWrAy9Cio8GqoWJvw2","Columns.Administration.Logs":0,"Columns.Administration.SpotRates":0,"Form.Administration.SpotRateFees":0,"Columns.Administration.Role":0,"Form.Administration.CompanyFreightoolsConnections":0,"Lookup.CountriesLookup":"cjdw6LOuxVV65jRGkFedIQ2","ColumnsBundle":0,"Form.Administration.Countries":0,"Lookup.BlogsLookup":0,"Form.Administration.FreightoolsConnections":0,"Form.Administration.ProductPricingPlans":0,"Columns.Administration.Countries":0,"Bundle.Configuration":"yFifqqFBdhA5n8_MhDL42w2","Form.SiteManagement.WebContentPlanPackages":0,"Columns.Administration.SpotRateFees":0,"Columns.Administration.Blogs":0,"Columns.Administration.Services":0,"Template.Common.ReportDialog":0,"Form.SiteManagement.WebContents":0,"RemoteData.Administration.ImplicitPermissions":0,"Bundle.NorthwindLookups":0,"Lookup.ExchangeRatesLookup":0,"Lookup.CompanyTypesLookup":0,"Form.Administration.FreightDictionary":0,"Bundle.Base":"3krHtmnUHhzkM5mDeXO-Aw2","Columns.Administration.EmailLogs":0,"Columns.Administration.PriceDetails":0,"Columns.SiteManagement.WebContentPlanPackages":0,"Columns.Administration.UnitTypes":0,"Columns.Administration.SpecialOffers":0,"Lookup.TagsLookup":0,"Form.Administration.Blogs":0,"Lookup.WebContentPlanPackagesLookup":0,"Columns.SiteManagement.WebContents":0,"Form.Administration.CrmActivities":0,"Columns.Administration.EmailParameters":0,"Columns.Administration.FreightoolsConnections":0,"Form.Membership.ForgotPassword":0,"Columns.Administration.QuotesLogs":0,"Columns.Administration.NetworkLikes":0,"Form.Administration.CommercialSiteContent":0,"Form.Administration.PublicEmailDomains":0,"Bundle.Site":0,"Form.Administration.ChargingUnits":0,"Columns.Administration.NetworkComments":0,"Columns.Administration.ScheduleSearchLogs":0,"Columns.Administration.ProductPricingPlans":0,"Form.Administration.Companies":0,"CssBundle.Pages/Dashboard":0,"Form.Administration.EmailLogs":0,"Columns.Administration.CommercialSiteContent":0,"Columns.Administration.PublicEmailDomains":0,"RemoteData.Administration.PermissionKeys":0,"Columns.SiteManagement.WebContentQuations":0,"Form.Administration.Language":0,"Columns.Administration.CompanyTypes":0,"Columns.Administration.Language":0,"Form.Administration.CompanyTypes":0,"Form.Administration.NetworkNews":0,"Columns.Administration.Currencies":0,"Form.Administration.Branches":0,"Form.Administration.Services":0,"Form.SiteManagement.WebContentEmailLogs":0,"Lookup.PhoneCodeLookup":"cIjmVgOadCEyKPoz6nfi4g2","Form.Administration.SpotRateConfiguration":0,"LocalText.Site.en-US.Public":"YbI2Do41sljgv2UQziZbYw2","Form.SiteManagement.WebContentClients":0,"Template.EntityDialog":0,"Form.Administration.SystemCarriers":0,"Columns.Administration.Tags":0,"RemoteData.UserData":0,"Form.Membership.SignUp":0,"Form.SiteManagement.WebContentPlans":0,"Form.Administration.Logs":0});
</script>
<script>
app.controller('CommercialController', ($scope, $timeout, CommonServices) => {
$scope.navItems = [{"Header":{"Id":305,"Page":7,"MiniTitle":null,"Title":"Our Solutions","SubTitle":"We design supply chain solutions that leverage technology and logistics expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":0,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":306,"Page":7,"MiniTitle":null,"Title":"Sustainable Logistics","SubTitle":"Carbon offset emissions","Content":null,"ButtonText":null,"ButtonLink":"SustainableLogistics","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":307,"Page":7,"MiniTitle":null,"Title":"OceanFreight","SubTitle":"Ship in a few clicks","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":308,"Page":7,"MiniTitle":null,"Title":"Air Freight","SubTitle":"Fly for faster arrivals","Content":null,"ButtonText":null,"ButtonLink":"AirFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":309,"Page":7,"MiniTitle":null,"Title":"Less-than-Container Load","SubTitle":"Ship any volume","Content":null,"ButtonText":null,"ButtonLink":"LCLFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":310,"Page":7,"MiniTitle":null,"Title":"Rail Freight","SubTitle":"Go intermodal or direct.","Content":null,"ButtonText":null,"ButtonLink":"RailFreight","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":311,"Page":7,"MiniTitle":null,"Title":"Additional Services","SubTitle":"Collaborate on orders","Content":null,"ButtonText":null,"ButtonLink":"AdditionalServices","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":77,"SectionItemType":66,"Order":6,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":312,"Page":7,"MiniTitle":null,"Title":"The Network","SubTitle":"We provide a global logistics platform where professionals can collaborate.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":0,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":313,"Page":7,"MiniTitle":null,"Title":"The Power Of Many","SubTitle":"Get instant rates","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":314,"Page":7,"MiniTitle":null,"Title":"Members Benefits","SubTitle":"Build your own digital network","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#members-benefits","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":315,"Page":7,"MiniTitle":null,"Title":"Members Directory","SubTitle":"Members Directory","Content":null,"ButtonText":null,"ButtonLink":"MembersDirectory","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":316,"Page":7,"MiniTitle":null,"Title":"Payment Protection","SubTitle":"Payment Protection","Content":null,"ButtonText":null,"ButtonLink":"TheNetwork#payment-protection","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":78,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":318,"Page":7,"MiniTitle":null,"Title":"Resources","SubTitle":"The tools and resources you need to deepen your knowledge and expertise.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":0,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":333,"Page":7,"MiniTitle":null,"Title":"Ocean Freight Rates","SubTitle":"Ocean Freight Rates","Content":null,"ButtonText":null,"ButtonLink":"ContainerFreightRates","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":null,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":319,"Page":7,"MiniTitle":null,"Title":"Blogs","SubTitle":"News & Trends you should read","Content":null,"ButtonText":null,"ButtonLink":"Blogs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":320,"Page":7,"MiniTitle":null,"Title":"Freight Dictionary","SubTitle":"Boost your supply chain reminology","Content":null,"ButtonText":null,"ButtonLink":"FreightDictionary","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":330,"Page":7,"MiniTitle":null,"Title":"Schedule","SubTitle":"Port to Port shipping schedule","Content":null,"ButtonText":null,"ButtonLink":"Schedule","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":79,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1}]},{"Header":{"Id":322,"Page":7,"MiniTitle":null,"Title":"About Us","SubTitle":"We bring digital freight solutions and networking opportunities to companies of all sizes.","Content":null,"ButtonText":null,"ButtonLink":null,"SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":0,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},"Items":[{"Id":323,"Page":7,"MiniTitle":null,"Title":"Our Mission","SubTitle":"We’re making global trade easy for everyone","Content":null,"ButtonText":null,"ButtonLink":"AboutUs","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":1,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":324,"Page":7,"MiniTitle":null,"Title":"Why All-Forward","SubTitle":"The fastest freight forwarders network.","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#why-all-forward","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":2,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":325,"Page":7,"MiniTitle":null,"Title":"Careers","SubTitle":"Help Move the World Forward","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#careers","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":3,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":326,"Page":7,"MiniTitle":null,"Title":"Blog","SubTitle":"Featured Story","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#press","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":4,"OnboardingWizardForwarders":null,"LanguageId":1},{"Id":327,"Page":7,"MiniTitle":null,"Title":"Contact","SubTitle":"Contact and follow us","Content":null,"ButtonText":null,"ButtonLink":"AboutUs#contact-us","SecondaryButtonLink":null,"SecondaryButtonText":null,"SectionType":80,"SectionItemType":66,"Order":5,"OnboardingWizardForwarders":null,"LanguageId":1}]}];
$scope.newsLetterEmail = '';
$scope.lead = {"Id":0,"Email":null,"IP":null,"FirstName":null,"LastName":null,"Phone":null,"PhoneCode":null,"CompanyName":null,"CompanyVAT":null,"CompanyAddress":null,"CompanyCountryId":null,"CompanyWebsite":null,"CompanyId":null,"CompanyTypeId":null,"CompanySize":null,"Created":"0001-01-01T00:00:00","UTMSource":null,"UTMCampaign":null,"UTMMedium":null,"UTMTerm":null,"UTMContent":null,"GCLID":null};
$scope.countries = Q.getLookup('CountriesLookup').items;
const params = new URLSearchParams(window.location.search);
$scope.scrollToTop = () => $(window).scrollTop(0);
$scope.isNavOpen = false;
$scope.selectedSubMenuIndex = null;
$scope.toggleNav = () => {
$scope.isNavOpen = !$scope.isNavOpen;
if (!$scope.isNavOpen) {
$scope.selectedSubMenuIndex = null;
}
}
$scope.openSubMenu = index => {
$scope.selectedSubMenuIndex = index;
}
$scope.closeSubMenu = () => {
$scope.selectedSubMenuIndex = null;
}
$scope.signupLink = 'https://app.all-forward.com/Account/Signup';
$scope.loginLink = 'https://app.all-forward.com/Account/Login';
$scope.signupToNewsletter = () => {
if (!CommonServices.isValidEmail($scope.newsLetterEmail)) {
Q.notifyError('Please enter a valid email');
return;
}
$scope.lead.Email = $scope.newsLetterEmail;
$scope.lead.UTMSource = 'NEWSLETTER';
$scope.lead.UTMCampaign = params.get('utm_campaign');
$scope.lead.UTMMedium = params.get('utm_medium');
$scope.lead.UTMTerm = params.get('utm_term');
$scope.lead.UTMContent = params.get('utm_content');
$scope.lead.GCLID = params.get('gclid');
$.post(Q.resolveUrl('~/Administration/Leads/Set'), { lead: $scope.lead })
.then(() => {
Q.notifySuccess('You will now receive newsletters from us');
})
.catch(e => {
Q.notifyError(e.statusText);
});
}
$scope.scrollTo = (selector, offset) => {
$('html').animate(
{
scrollTop: $(selector).offset().top - offset
})
}
$timeout(() => {
$('a').each(function(i, el) {
const searchParams = location.search;
const onboardingWizard = $(el).attr('data-onboarding-wizard');
let onboardingWizardParam = ''
if (onboardingWizard) {
onboardingWizardParam = `${searchParams ? '&' : '?'}onboardingWizard=${onboardingWizard}`;
};
const href = $(this).attr('href');
if (location.search || onboardingWizardParam) {
$(this).attr('href', href + searchParams + onboardingWizardParam);
}
});
const nav = $(".main-navigation");
const onScroll = () => {
if($(window).scrollTop()) {
!nav.hasClass('nav-scroll') && nav.addClass("nav-scroll");
}
else if (nav.hasClass('nav-scroll') && !nav.hasClass('force-scroll-class')) {
nav.removeClass("nav-scroll");
}
}
$(window).on("scroll", onScroll);
$(".nav-item").hover(() => {
if($(window).scrollTop() || nav.hasClass('force-scroll-class')) return
nav.addClass("nav-scroll");
}, () => {
if($(window).scrollTop() || nav.hasClass('force-scroll-class')) return
nav.removeClass("nav-scroll");
});
onScroll();
});
});
</script>
<nav class="main-navigation" ng-show="!isNavOpen">
<a class="nav-logo" href="index.html" aria-label="All Forward Home Page">
<svg viewBox="0 0 321 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M83 1V38H92.1198V24.8008H105.83V16.9173H92.1198V9.02385H107V1H83Z" fill="#57B89C" />
<path d="M37 1V38H58V30.2332H46.2257V1H37Z" fill="currentColor" />
<path d="M60 1V38H81V30.2332H69.2155V1H60Z" fill="currentColor" />
<path d="M128.16 0C116.71 0 108.7 8.49 108.7 19.28C108.7 30.07 116.71 38.56 128.16 38.56C139.61 38.56 147.62 30.07 147.62 19.28C147.62 8.49 139.54 0 128.16 0ZM128.16 30.18C121.71 30.18 117.68 25.36 117.68 19.28C117.68 13.2 121.72 8.38 128.16 8.38C134.6 8.38 138.64 13.2 138.64 19.28C138.64 25.36 134.54 30.18 128.16 30.18Z" fill="#57B89C" />
<path d="M301.792 1H289V38H301.792C313.541 38 321 29.3006 321 19.4399C321 9.01867 312.618 1 301.792 1ZM301.613 29.7411H298.008V9.20888H301.613C307.92 9.20888 311.773 13.7137 311.773 19.4499C311.773 25.6767 307.374 29.7511 301.613 29.7511V29.7411Z" fill="#57B89C" />
<path d="M179 1H189.034L193.041 21.7148H193.471L197.389 1H208.611L212.529 21.7148H212.959L216.966 1H227L218.255 38H207.652L203.205 15.6918H202.775L198.328 38H187.725L179 1Z" fill="#57B89C" />
<path d="M35 37.99L22.6152 1H12.3748L0 37.99H1.85371C1.85371 37.99 1.85371 37.99 1.85371 38H9.8998C9.8998 33.8002 13.2866 30.3785 17.4549 30.3785C21.6232 30.3785 25.01 33.8002 25.01 38H33.0661C33.0661 38 33.0661 38 33.0661 37.99H34.99H35ZM13.9279 22.6573L16.8637 12.3624L20.2605 22.5077C19.3487 22.3381 18.4168 22.2583 17.4649 22.2583C16.2625 22.2583 15.0802 22.398 13.9279 22.6573Z" fill="currentColor" />
<path d="M288 37.99L277.956 24.2391C283.472 22.8851 286.76 19.2442 286.76 12.775C286.76 5.80428 281.556 1 273.56 1H258V13.2464V19.5752V38H267.106V24.1889L276.585 38H287.99L288 37.99ZM274.427 17.0276H267.116V8.71293H274.185C276.232 8.71293 277.845 10.6286 277.845 12.785C277.845 14.9414 276.484 17.0377 274.437 17.0377L274.427 17.0276Z" fill="#57B89C" />
<path d="M180 37.99L169.956 24.2391C175.472 22.8851 178.76 19.2442 178.76 12.775C178.76 5.80428 173.556 1 165.56 1H150V13.2464V19.5752V38H159.106V24.1889L168.585 38H179.99L180 37.99ZM166.427 17.0276H159.116V8.71293H166.185C168.232 8.71293 169.845 10.6286 169.845 12.785C169.845 14.9414 168.484 17.0377 166.437 17.0377L166.427 17.0276Z" fill="#57B89C" />
<path d="M227.5 11.29L241.38 16.88L224.47 24.08L227.5 11.29Z" fill="currentColor" />
<path d="M229.696 1L227.82 8.99321L247.388 16.8959L223.527 27.2519L221 38L264.92 18.213L265 14.9152L229.696 1Z" fill="#57B89C" />
</svg>
<span style="display: none;">All Forward Home Page</span>
</a>
<ul class="nav-list">
<li class="nav-item nav-dropdown-container" ng-repeat="navItem in navItems" tabindex="0" ng-class="{'nav-dropdown-first': $first}">
<span class="nav-title uppercase">{{navItem.Header.Title}}</span>
<svg class="nav-dropdown-arrow" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 14.9999C11.744 14.9999 11.488 14.9019 11.293 14.7069L6.586 9.99994L8 8.58594L12 12.5859L16 8.58594L17.414 9.99994L12.707 14.7069C12.512 14.9019 12.256 14.9999 12 14.9999Z" fill="currentColor" />
</svg>
<img class="nav-dropdown-polygon"
src="Content/images/commercial/polygon.png"
alt="polygon" />
<div class="dropdown-wrapper" ng-class="{'dropdown-wrapper-first': $first}">
<div class="nav-dropdown">
<div class="nav-dropdown-items-container">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-dropdown-item" ng-repeat="item in navItem.Items | limitTo: 4">
<div class="flex_col">
<span class="nav-item-title">{{item.Title}}</span>
<span class="nav-item-subtitle">{{item.SubTitle}}</span>
</div>
<img class="nav-dropdown-item-icon"
src="Content/images/commercial/arrow-right-white.svg"
alt="arrow" />
</a>
</div>
<div class="nav-dropdown-items-container" ng-if="navItem.Items.length > 4">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-dropdown-item" ng-repeat="item in navItem.Items | limitTo: 4 - navItem.Items.length">
<div class="flex_col">
<span class="nav-item-title">{{item.Title}}</span>
<span class="nav-item-subtitle">{{item.SubTitle}}</span>
</div>
<img class="nav-dropdown-item-icon"
src="Content/images/commercial/arrow-right-white.svg"
alt="arrow" />
</a>
</div>
<div class="nav-dropdown-card-container">
<div class="nav-dropdown-card-text">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<p>{{navItem.Header.SubTitle}}</p>
</div>
<img src="Content/images/commercial/calculator-1.jpg" ng-show="navItem.Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/THE-NETWORK-nav-dropdown-card.jpg" ng-show="navItem.Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/RESOURCES-nav-dropdown-card.png" ng-show="navItem.Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/ABOUT-US-nav-dropdown-card.png" ng-show="navItem.Header.SectionType == 80" alt="calculator" />
</div>
</div>
</div>
</li>
</ul>
<div class="nav-icons">
<button class="mobile-nav-toggler" ng-click="toggleNav()">
<svg width="24" height="16" viewBox="0 0 24 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 1H23" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M1 1H17" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M3 8H1" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M23 8H7" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M21 15H23" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
<path d="M1 15H17" stroke="currentColor" stroke-width="2" stroke-miterlimit="10" stroke-linecap="square" />
</svg>
</button>
<a href="%7B%7BloginLink%7D%7D.html" class="base-btn btn-secondary hide_mobile">Login</a>
<a href="%7B%7BsignupLink%7D%7D.html" class="base-btn primary-btn hide_mobile btn-white">Get Started</a>
</div>
</nav>
<nav class="nav-mobile" ng-class="{ 'nav-mobile-active': isNavOpen }">
<div class="nav-logo-mobile">
<a href="index.html">
<img src="Content/images/commercial/squareLogoBlue.svg" alt="logo-mobile" />
</a>
<div class="mobile-nav-exit" ng-click="toggleNav()">
<img src="Content/images/commercial/e-remove.svg" alt="exit">
<img src="Content/images/commercial/Rectangle%2019.svg" alt="blue-backgroud">
</div>
</div>
<ul>
<li class="nav-mobile-item" ng-repeat="navItem in navItems">
<button class="nav-mobile-menu-btn" ng-click="openSubMenu($index)">
<div class="nav-mobile-item-text">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<span>
Check more
<img src="Content/images/commercial/arrow-right-white.svg" alt="arrow-right" />
</span>
</div>
<img src="Content/images/commercial/CalcMobile.jpg" ng-show="navItem.Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/TheNetworkMobile.jpg" ng-show="navItem.Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/bl_Mobile.jpg" ng-show="navItem.Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/water-home-blog-img-Mobile.jpg" ng-show="navItem.Header.SectionType == 80" alt="calculator" />
</button>
</li>
</ul>
<div class="footer-socials nav-socials-mobile">
<div class="socials-icons nav-socials-icons">
<a href="https://www.facebook.com/alllforward" target="_blank">
<img src="Content/images/commercial/fb.svg" alt="facebook" />
</a>
<a href="https://linkedin.com/company/allforward" target="_blank">
<img src="Content/images/commercial/linkedin.svg" alt="linkedin" />
</a>
</div>
<div class="footer-copy-rights nav-copy-rights">
<span>Copyright ©</span>
<span>2023</span>
<span>Terms of Use</span>
</div>
</div>
<div class="nav-mobile-logo-bot">
<img src="Content/images/commercial/NavBotLogo.svg" alt="all-forward-logo" />
</div>
</nav>
<div class="nav-mobile nav-mobile-submenu" ng-class="{ 'nav-mobile-active': selectedSubMenuIndex != null }">
<div class="nav-logo-mobile">
<img src="Content/images/commercial/squareLogoBlue.svg" alt="logo-mobile" />
<div class="mobile-nav-exit" ng-click="toggleNav()">
<img src="Content/images/commercial/e-remove.svg" alt="exit">
<img src="Content/images/commercial/Rectangle%2019.svg" alt="blue-backgroud">
</div>
</div>
<ul>
<li class="nav-mobile-item nav-mobile-side-first">
<button class="nav-mobile-menu-btn" ng-click="closeSubMenu()">
<div class="nav-mobile-item-text nav-mobile-item-text-side">
<h4 class="uppercase">{{navItems[selectedSubMenuIndex].Header.Title}}</h4>
<span>
<img class="arrow-icon-rotate-side" src="Content/images/commercial/arrow-right-white.svg" alt="arrow-right" />
Go back
</span>
</div>
<img src="Content/images/commercial/CalcMobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 77" alt="calculator" />
<img src="Content/images/commercial/TheNetworkMobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 78" alt="calculator" />
<img src="Content/images/commercial/bl_Mobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 79" alt="calculator" />
<img src="Content/images/commercial/water-home-blog-img-Mobile.jpg" ng-show="navItems[selectedSubMenuIndex].Header.SectionType == 80" alt="calculator" />
</button>
</li>
<li ng-repeat="item in navItems[selectedSubMenuIndex].Items">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html" class="nav-side-item" ng-click="toggleNav()">
<div class="nav-side-item-text">
<span>{{item.Title}}</span>
<p>{{item.SubTitle}}</p>
</div>
<img class="nav-side-item-icon"
src="Content/images/commercial/right-arrow.svg"
alt="arrow" />
</a>
</li>
</ul>
<div class="footer-socials nav-socials-mobile">
<div class="socials-icons nav-socials-icons">
<a href="https://www.facebook.com/alllforward" target="_blank">
<img src="Content/images/commercial/fb.svg" alt="facebook" />
</a>
<a href="https://linkedin.com/company/allforward" target="_blank">
<img src="Content/images/commercial/linkedin.svg" alt="linkedin" />
</a>
</div>
<div class="footer-copy-rights nav-copy-rights">
<span>Copyright ©</span>
<span>2023</span>
<span>Terms of Use</span>
</div>
</div>
<div class="nav-mobile-logo-bot">
<img src="Content/images/commercial/NavBotLogo.svg" alt="All-Forward-logo" />
</div>
</div>
<div class="commercial-container">
<script>
app.controller('MemberDirectoryController', ($scope, $timeout) => {
$scope.countries = Q.getLookup("CountriesLookup").items;
$scope.services = Q.getLookup("ServicesLookup").items;
$scope.isAsc = "-1";
$scope.orderBy = "LastLogin";
$scope.limitCountries = 10;
$scope.selectedCountriesCount = 0;
$scope.selectedServicesCount = 0;
$scope.isFiltersOpen = false;
$scope.$watch("isFiltersOpen", (newVal) => {
if (newVal) {
$("body").addClass("lock-scroll")
} else
$("body").removeClass("lock-scroll")
});
$scope.initCriteriesObject = function () {
$scope.criterias = {
OffsetRows: 0,
FetchNextRows: 16,
FreeSearch: $scope.search || null,
CountryIds: $scope.countries.filter(c => c.isSelected).map(c => c.Id).join() || null,
Services: $scope.services.filter(c => c.isSelected).map(c => c.Id).join() || null,
IsMyPartner: false,
IsAsc: $scope.isAsc,
OrderSort: $scope.orderBy,
IsQuoteRequest: false
};
}
$scope.filter = function () {
$scope.companies = [];
$scope.initCriteriesObject();
$scope.getFilteredCompanies();
};
$scope.onSubmit = () => {
$scope.filter();
$timeout(() => {
$('html').animate(
{
scrollTop: $('.members-grid-container').offset().top - 145
})
})
}
$scope.toggleCountriesFilter = function (countryId) {
if ($scope.selectedCountries.includes(countryId)) {
$scope.selectedCountries = $scope.selectedCountries.filter(id => id != countryId);
} else {
$scope.selectedCountries.push(countryId);
}
$scope.filter();
}
$scope.setOrderBy = function (orderBy) {
if ($scope.orderBy === orderBy) return;
$scope.orderBy = orderBy;
$scope.filter();
}
$scope.clearCountries = () => {
$scope.countries.forEach(c => c.isSelected = false)
$scope.searchedCountry = '';
$scope.filter();
}
$scope.getFilteredCompanies = function () {
$scope.currentRequest && $scope.currentRequest.abort();
var url = `~/Administration/Companies/GetCompaniesTerms?criterias=${JSON.stringify($scope.criterias)}`;
$scope.loading = true;
$scope.currentRequest = $.get(Q.resolveUrl(url), function (companies) {
$scope.hasError = false;
$scope.loading = false;
$scope.companies = companies;
$scope.$apply();
}).fail(function (error) {
if (error.statusText ==='abort') return;
$scope.loading = false;
$scope.hasError = true;
$scope.$apply();
Q.notifyError(error.statusText || error.message);
});
}
$scope.getSelectedCountriesCount = () => {
const count = $scope.countries.filter(c => c.isSelected).length;
$scope.selectedCountriesCount = count
if (!count) return "Select Countries"
if (count == 1) return `${count} Country Selected`
return `${count} Countries Selected`
}
$scope.getSelectedServicesCount = () => {
const count = $scope.services.filter(s => s.isSelected).length;
$scope.selectedServicesCount = count
if (!count) return "Select Services"
if (count == 1) return `${count} Service Selected`
return `${count} Services Selected`
}
$scope.getOrderByDisplay = () => {
if ($scope.orderBy === "LastLogin") return "Last Login"
if ($scope.orderBy === "Name") return "Name"
return 'Foundation Year'
}
});
</script>
<div ng-controller="MemberDirectoryController" class="the-network-container members-container">
<header class="ocean-freight-hero member-directory-hero-bg">
<img class="hide_desktop" src="Content/images/commercial/md-bg.jpeg" alt="ship-and-airplane-in-port" />
<div class="ocean-container">
<div class="ocean-freight-hero-content hero-opacity members-direcotry-hero">
<div class="reporting-content ocean-hero-container">
<div class="info-section-container p-zero members-direcotry-hero-content">
<div class="info-container ocean-container glossary-hero-content">
<div class="title-container">
<h1 class="info-title reporting-title uppercase">
MEMBER DIRECTORY
</h1>
<p class="about-us-title-small title-small reporting-small-title uppercase hide_mobile">
MEMBER DIRECTORY
</p>
</div>
<h2 class="info-sub-title">
Finding the ideal partner has never been easier
</h2>
<p class="info-content ocean-freight-hero-para hide_mobile">
Our search engine allows you to find the perfect partner in any country for any type of shipment. You can use other members' ratings and our Trust Score metric to get detailed information on potential agents to make sure that they are reliable, experienced and suited to your needs.
</p>
</div>
<form class="member-directory-form" ng-submit="onSubmit()">
<header>
<h3 class="member-directory-form-title">Search Member Directory</h3>
</header>
<div class="member-directory-form-main">
<label class="member-directory-form-label">
<span class="member-directory-form-main-label-title">
Search
</span>
<input ng-model="search" class="commercial-input" type="select" placeholder="Company name, Country or City">
</label>
<label class="member-directory-form-label">
<span class="member-directory-form-main-label-title">
Countries
</span>
<div class="dropdown">
<button type="button" ng-class="{ noneSelected: !selectedCountriesCount }" class="commercial-input dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ getSelectedCountriesCount() }}
<img alt="arrow-down" class="ml-auto" src="Content/images/digital/Path%20271.png" alt="arrow-down">
</button>
<div class="member-directory-dropdown-menu af_scrollbar dropdown-menu" aria-labelledby="countries-dropdown" stop-propagation>
<input type="text" class="commercial-input commercial-input-md country-search-input" ng-model="countrySearchInput" placeholder="Search Country">
<label class="member-directory-dropdown-item control control-checkbox" ng-repeat="country in countries | filter:countrySearchInput">
<input type="checkbox" ng-model="country.isSelected">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
{{country.Name}}
</span>
</label>
</div>
</div>
</label>
<label class="member-directory-form-label">
<span class="member-directory-form-main-label-title">
Order by
</span>
<div class="dropdown">
<button type="button" class="commercial-input dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ getOrderByDisplay() }}
<img class="ml-auto" src="Content/images/digital/Path%20271.png" alt="arrow-down">
</button>
<div class="member-directory-dropdown-menu af_scrollbar dropdown-menu" aria-labelledby="sort-dropdown" stop-propagation>
<label class="member-directory-dropdown-item control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="LastLogin"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Last Login
</span>
</label>
<label class="member-directory-dropdown-item control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="Name"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Name
</span>
</label>
<label class="member-directory-dropdown-item control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="FoundationYear"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Foundation Year
</span>
</label>
</div>
</div>
</label>
<label class="member-directory-form-label">
<span class="member-directory-form-main-label-title">
Services
</span>
<div class="dropdown">
<button type="button" ng-class="{ noneSelected: !selectedServicesCount }" class="commercial-input dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{ getSelectedServicesCount() }}
<img class="ml-auto" src="Content/images/digital/Path%20271.png" alt="arrow-down">
</button>
<div class="member-directory-dropdown-menu af_scrollbar dropdown-menu" aria-labelledby="services-dropdown" stop-propagation>
<label class="member-directory-dropdown-item control control-checkbox" ng-repeat="service in services">
<input type="checkbox" ng-model="service.isSelected">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
{{service.Name}}
</span>
</label>
</div>
</div>
</label>
</div>
<div class="member-directory-form-btn-container">
<button type="submit" class="base-btn primary-btn btn-white">Search</button>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<seaction class="under-hero-forwarders-count" ng-if="companies">
<span class="members-container-top-count">
<img src="Content/images/commercial/human-resources.svg" alt="human-resources">
{{companies[0].TotalResult}} Forwarders World Wide
</span>
</seaction>
<main class="member-directory-main">
<aside class="member-directory-aside" ng-class="{'member-directory-aside-active': isFiltersOpen }" ng-show="companies">
<header>
<img src="Content/images/commercial/member-directoy-filter-icon.svg" alt="filter-icon">
<span>Filters</span>
<button ng-click="isFiltersOpen = false" class="ml-auto hide_desktop aside-exit-btn">
<img src="Content/images/commercial/e-remove.svg" alt="exit">
</button>
</header>
<div class="aside-sections-container">
<section class="aside-section countries">
<div class="countries-clear-container">
<span class="mb-10 aside-content-title">Countries
</span>
<button class="mb-10 blue_ghost_btn" ng-click="clearCountries()">
Clear
</button>
</div>
<input class="mb-20 height-36 commercial-input" type="text" ng-model="searchedCountry" placeholder="Search">
<label class="control control-checkbox"
ng-repeat="country in countries | filter: searchedCountry | limitTo: limitCountries">
<input type="checkbox" ng-model="country.isSelected" ng-change="filter()">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
{{country.Name}}
</span>
</label>
</section>
<section class="aside-section services">
<span class="aside-content-title">Services</span>
<label class="control control-checkbox" ng-repeat="service in services">
<input type="checkbox" ng-model="service.isSelected" ng-change="filter()">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
{{service.Name}}
</span>
</label>
</section>
<section class="aside-section by">
<span class="aside-content-title">Sort By</span>
<label class="control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="LastLogin" ng-change="filter()"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Last Login
</span>
</label>
<label class="control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="Name" ng-change="filter()"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Name
</span>
</label>
<label class="control control-checkbox">
<input type="radio" name="orderBy" ng-model="orderBy" value="FoundationYear" ng-change="filter()"/>
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Foundation Year
</span>
</label>
</section>
<section class="aside-section order">
<span class="aside-content-title">Order</span>
<label class="control control-checkbox">
<input type="radio" name="isAsc" ng-model="isAsc" value="1" ng-change="filter()">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
A-Z
</span>
</label>
<label class="control control-checkbox">
<input type="radio" name="isAsc" ng-model="isAsc" value="-1" ng-change="filter()">
<div class="control_indicator commerical-checkbox"></div>
<span class="label-title">
Z-A
</span>
</label>
</section>
</div>
</aside>
<section class="members-not-selected" ng-if="!companies && !loading">
<img src="Content/images/commercial/search-globe.svg" alt="search-globe">
<h4 class="members-not-selected-title">All members have yet to be selected!</h4>
<span class="members-not-selected-message">You can search for a member by selecting the member info in the Member Directory form above.</span>
</section>
<div class="members-grid-container" ng-show="companies || loading">
<span class="fs-32" ng-if="companies.length == 0 && !loading">
No Results Were Found
</span>
<button ng-show="!loading" ng-click="isFiltersOpen = true" class="members-filter-toggler hide_desktop">
<img src="Content/images/commercial/member-directoy-filter-icon.svg" alt="filter-icon">
<span>Filters</span>
</button>
<img class="af_loading_dots" src="Content/images/loading-dots.svg" alt="loading" ng-if="loading">
<section class="members-grid">
<article class="member-card" ng-repeat="company in companies">
<header>
<div class="member-card-logo-container">
<img onerror="this.style.display='none'" ng-if="company.Logo" ng-src="https://app.all-forward.com/upload/{{company.Logo}}" alt="{{company.Name}}">
<span class="member-card-status" ng-show="!company.IsOnline">{{company.LastLoginTime | timeSince}}</span>
<div class="online-icon-container" ng-show="company.IsOnline">
<div class="green-dot"></div>
<span class="grey-span">Online</span>
</div>
</div>
<h3 class="member-card-title">{{company.Name}}</h3>
</header>
<span class="member-card-location">
<img src="Content/images/commercial/member-card-location-icon.svg" alt="location-icon">
<span ng-if="company.City">{{company.City}}, </span>
{{company.CountryId | countryName}}</span>
<div class="member-card-ts">
<span class="member-card-ts-pro ts-blue" ng-if="company.IsPro">
<img src="Content/images/commercial/pro-member-icon.svg" alt="pro-member-icon">
PRO MEMBER
</span>
<span ng-if="company.IsPro && company.TrustScoreLevel" class="member-card-pipe">|</span>
<span class="member-card-ts-level ts-green" ng-show="company.TrustScoreLevel > 0">
<img src="Content/images/commercial/member-directory-ts-icon.svg" alt="partners-icon">
LEVEL {{company.TrustScoreLevel}}
</span>
<span ng-if="company.RatingAverage" class="member-card-ts-rating">
<span ng-if="company.TrustScoreLevel || company.IsPro" class="member-card-pipe">|</span>
<img src="Content/images/commercial/YellowStarIcon.svg" alt="yellow-star-icon">
{{company.RatingAverage}}
</span>
</div>
<span class="member-card-partners fw-400">
<img src="Content/images/commercial/members-directory-partners-icon.svg" alt="partners-icon">
{{company.ConnectedAmount}} PARTNERS
</span>
<a ng-if="company.PersonalUrlSuffix" href="index.html" class="medium-btn base-btn primary-btn btn-white">View Profile</a>
</article>
</section>
<button ng-show="companies.length && !loading" data-toggle="modal" data-target="#auth-modal" class="mx-auto my-50 base-btn primary-btn btn-white">Load More</button>
</div>
</main>
</div>
</div>
<footer>
<div class="home-container">
<div class="top-container">
<div class="footer-stroke">
<div class="footer-stroke-title">
<span class="hide_desktop uppercase">The Power Of Many</span>
<span class="hide_mobile uppercase">Sign Up</span>
<h3 class="uppercase">Sign Up</h3>
</div>
<h4>Sign Up for All-Forward Platform</h4>
<p>
Our goal is to provide a worldwide network of freight forwarders. We call it “The power of many”.
</p>
</div>
<div class="email-notif-container">
<p>
Get instant rates based on thousands of freight forwarders on our network & the All-Forward technology. We provide the ultimate solution for booking and management of your shipments.
</p>
<form class="input-container" ng-submit="signupToNewsletter()">
<label>
Email
<input required class="commercial-input footer-input" type="email" ng-model="newsLetterEmail" placeholder="Type your email" />
</label>
<button type="submit" class="base-btn primary-btn">Sign Up</button>
</form>
<p>
I agree to the
<a href="EULA.html" target="_blank">Terms of Service</a>
and
<a href="Privacy.html" target="_blank">Privacy Policy</a>
</p>
</div>
</div>
<div class="bot-container">
<a href="index.html">
<img src="Content/images/commercial/FooterLogo.svg" alt="All-Forward-logo" />
</a>
<div class="footer-lists-container">
<div class="footer-list" ng-repeat="navItem in navItems">
<h4 class="uppercase">{{navItem.Header.Title}}</h4>
<ul>
<li ng-repeat="item in navItem.Items">
<a href="%7B%7Bitem.ButtonLink%7D%7D.html">
{{item.Title}}
</a>
</li>
</ul>
<div ng-if="!$last" class="dot mt-dot"></div>
</div>
</div>
</div>
<div class="footer-socials">
<div class="socials-icons">
<a href="https://www.facebook.com/alllforward" target="_blank">
<img src="Content/images/commercial/fb.svg" alt="facebook" />
</a>
<a href="https://linkedin.com/company/allforward" target="_blank">
<img src="Content/images/commercial/linkedin.svg" alt="linkedin" />
</a>
</div>
<div class="footer-copy-rights">
<span>Copyright ©</span>
<span>2023</span>
<span>All-Forward, Inc. <a href="EULA.html" target="_blank">Terms of Use</a> / <a href="Privacy.html" target="_blank">Privacy Policy</a></span>
</div>
<img class="footer-logo-mobile-bottom" src="Content/images/commercial/FooterLogo.svg" alt="All-Forward-logo" />
</div>
</div>
</footer>
<button ng-click="scrollToTop()" class="footer-arrow-up" aria-label="Scroll to top">
<img src="Content/images/commercial/arrow-up%201.svg" alt="arrow-up">
</button>
<style>#auth-modal .modal-dialog {
max-width: 1050px;
width: initial;
height: 100vh;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
#auth-modal .modal-body {
display: flex;
padding: 0;
margin: 0;
}
#auth-modal .modal-content {
border-radius: 16px;
box-shadow: none;
max-height: 90vh;
overflow: hidden;
}
.auth-image-container {
width: 453px;
position: relative;
overflow: hidden;
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
}
.auto-image-gradient {
position: absolute;
top: 0;
bottom: 0;
left: -115px;
right: 0;
background: linear-gradient(90deg, rgba(4, 78, 172, 0.8) 7.29%, rgba(87, 184, 156, 0.2) 58.85%);
}
.auth-logo {
position: absolute;
left: 40px;
top: 40px;
max-width: 150px;
z-index: 1;
}
.auth-image {
position: absolute;
right: 0;
max-width: initial;
}
.auth-body-container {
flex: 1;
display: flex;
flex-direction: column;
}
.auth-header {
height: 90px;
display: flex;
align-items: center;
border-bottom: 1px solid #E6E6E6;
padding: 0 24px 0 30px;
}
.auth-header .icon_btn {
margin-left: auto;
padding: 6px;
}
.auth-header-title {
font-weight: 600;
font-size: 20px;
}
.auth-content-container {
flex: 1;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
margin: 0 auto;
padding: 52px 120px 200px;
}
.auth-content-container p {
margin: 20px 0 40px;
font-weight: 600;
font-size: 20px;
line-height: 32px;
}
.auth-content-container .base-btn {
width: 100%;
}
.auth-content-container .btn-transparent {
margin-top: 24px;
}
.auth-content-container .btn-transparent:not(:hover) {
color: var(--blue-dark);
}
@media screen and (min-width: 786px) and (max-width: 1280px) {
.auth-content-container {
padding: 52px 60px 100px;
}
.auth-image-container {
width: 320px;
}
.auth-image {
position: absolute;
right: 0;
max-width: initial;
right: -90px;
}
}
@media screen and (max-width: 786px) {
#auth-modal .modal-content {
border-radius: 0;
height: 100%;
width: 100%;
max-height: initial;
}
.auth-image-container {
display: none;
}
.auth-content-container {
padding: 52px 16px;
}