forked from RudranshBarate/Aiop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form-paypal-donate-both-onetime-recurring-style4.html
1040 lines (990 loc) · 59.9 KB
/
form-paypal-donate-both-onetime-recurring-style4.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 dir="ltr" lang="en">
<!-- Mirrored from html.kodesolution.live/m/epetcare/v2.0/demo/form-paypal-donate-both-onetime-recurring-style4.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Sep 2021 11:18:01 GMT -->
<head>
<!-- Meta Tags -->
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="description" content="ePetCare - Pet Care, Pets Club, Veterinary & Shop HTML5 Template" />
<meta name="keywords" content="Pet,Pet Care,Pets Club,Dog,Cat,Veterinary,Veterinary & Shop" />
<meta name="author" content="ThemeMascot" />
<!-- Page Title -->
<title>ePetCare - Pet Care, Pets Club, Veterinary & Shop HTML5 Template</title>
<!-- Favicon and Touch Icons -->
<link href="images/favicon.png" rel="shortcut icon" type="image/png">
<link href="images/apple-touch-icon.png" rel="apple-touch-icon">
<link href="images/apple-touch-icon-72x72.png" rel="apple-touch-icon" sizes="72x72">
<link href="images/apple-touch-icon-114x114.png" rel="apple-touch-icon" sizes="114x114">
<link href="images/apple-touch-icon-144x144.png" rel="apple-touch-icon" sizes="144x144">
<!-- Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/jquery-ui.min.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<link href="css/css-plugin-collections.css" rel="stylesheet"/>
<!-- CSS | menuzord megamenu skins -->
<link id="menuzord-menu-skins" href="css/menuzord-skins/menuzord-strip.css" rel="stylesheet"/>
<!-- CSS | Main style file -->
<link href="css/style-main.css" rel="stylesheet" type="text/css">
<!-- CSS | Theme Color -->
<link href="css/colors/theme-skin-lightgreen.css" rel="stylesheet" type="text/css">
<!-- CSS | Preloader Styles -->
<link href="css/preloader.css" rel="stylesheet" type="text/css">
<!-- CSS | Custom Margin Padding Collection -->
<link href="css/custom-bootstrap-margin-padding.css" rel="stylesheet" type="text/css">
<!-- CSS | Responsive media queries -->
<link href="css/responsive.css" rel="stylesheet" type="text/css">
<!-- CSS | Style css. This is the file where you can place your own custom css code. Just uncomment it and use it. -->
<!-- <link href="css/style.css" rel="stylesheet" type="text/css"> -->
<!-- external javascripts -->
<script src="js/jquery-2.2.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- JS | jquery plugin collection for this theme -->
<script src="js/jquery-plugin-collection.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="">
<div id="wrapper" class="clearfix">
<!-- preloader -->
<div id="preloader">
<div id="spinner" class="spinner large-icon">
<img alt="" src="images/preloaders/13.gif">
<h5 class="line-height-1 font-18">Loading...</h5>
</div>
<div id="disable-preloader" class="btn btn-default btn-sm">Disable Preloader</div>
</div>
<!-- Header -->
<header id="header" class="header">
<div class="header-top bg-theme-colored sm-text-center">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="widget no-border m-0">
<ul class="list-inline sm-text-center mt-5">
<li>
<a href="#" class="text-white">FAQ</a>
</li>
<li class="text-white">|</li>
<li>
<a href="#" class="text-white">Help Desk</a>
</li>
<li class="text-white">|</li>
<li>
<a href="#" class="text-white">Support</a>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="widget no-border m-0">
<ul class="styled-icons icon-dark icon-circled icon-theme-colored icon-sm pull-right flip sm-pull-none sm-text-center mt-sm-15">
<li><a href="#"><i class="fa fa-facebook text-white"></i></a></li>
<li><a href="#"><i class="fa fa-twitter text-white"></i></a></li>
<li><a href="#"><i class="fa fa-dribbble text-white"></i></a></li>
<li><a href="#"><i class="fa fa-instagram text-white"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin text-white"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="header-nav">
<div class="header-nav-wrapper navbar-scrolltofixed bg-white">
<div class="container">
<nav id="menuzord-right" class="menuzord green no-bg"><a class="menuzord-brand pull-left flip xs-pull-center mb-15" href="index-mp-layout1.html"><img src="images/logo-wide.png" alt=""></a>
<ul class="menuzord-menu">
<li class="active"><a href="#home">Home</a>
<ul class="dropdown">
<li><a href="#">Multi Page Layouts</a>
<ul class="dropdown">
<li><a href="index-mp-layout1.html">Layout1</a></li>
<li><a href="index-mp-layout2.html">Layout2</a></li>
<li><a href="index-mp-layout3.html">Layout3</a></li>
<li><a href="index-mp-layout4.html">Layout4</a></li>
<li><a href="index-mp-layout5.html">Layout5</a></li>
</ul>
</li>
<li><a href="#">Single Page Layouts</a>
<ul class="dropdown">
<li><a href="index-sp-layout1.html">Layout1</a></li>
<li><a href="index-sp-layout2.html">Layout2</a></li>
<li><a href="index-sp-layout3.html">Layout3</a></li>
<li><a href="index-sp-layout4.html">Layout4</a></li>
<li><a href="index-sp-layout5.html">Layout5</a></li>
</ul>
</li>
<li><a href="#">Boxed Layouts</a>
<ul class="dropdown">
<li><a href="index-boxed-mp-layout1.html">Boxed Multi Page Layout1</a></li>
<li><a href="index-boxed-mp-layout2.html">Boxed Multi Page Layout2</a></li>
<li><a href="index-boxed-mp-layout3.html">Boxed Multi Page Layout3</a></li>
<li><a href="index-boxed-mp-layout4.html">Boxed Multi Page Layout4</a></li>
<li><a href="index-boxed-mp-layout5.html">Boxed Multi Page Layout5</a></li>
<li><a href="index-boxed-sp-layout1.html">Boxed Single Page Layout1</a></li>
<li><a href="index-boxed-sp-layout2.html">Boxed Single Page Layout2</a></li>
<li><a href="index-boxed-sp-layout3.html">Boxed Single Page Layout3</a></li>
<li><a href="index-boxed-sp-layout4.html">Boxed Single Page Layout4</a></li>
<li><a href="index-boxed-sp-layout5.html">Boxed Single Page Layout5</a></li>
</ul>
</li>
<li><a href="#">RTL Layouts</a>
<ul class="dropdown">
<li><a href="index-rtl-mp-layout1.html">RTL Multi Page Layout1</a></li>
<li><a href="index-rtl-mp-layout2.html">RTL Multi Page Layout2</a></li>
<li><a href="index-rtl-mp-layout3.html">RTL Multi Page Layout3</a></li>
<li><a href="index-rtl-mp-layout4.html">RTL Multi Page Layout4</a></li>
<li><a href="index-rtl-mp-layout5.html">RTL Multi Page Layout5</a></li>
<li><a href="index-rtl-sp-layout1.html">RTL Single Page Layout1</a></li>
<li><a href="index-rtl-sp-layout2.html">RTL Single Page Layout2</a></li>
<li><a href="index-rtl-sp-layout3.html">RTL Single Page Layout3</a></li>
<li><a href="index-rtl-sp-layout4.html">RTL Single Page Layout4</a></li>
<li><a href="index-rtl-sp-layout5.html">RTL Single Page Layout5</a></li>
</ul>
</li>
<li><a href="#">Dark Layouts</a>
<ul class="dropdown">
<li><a href="index-dark-mp-layout1.html">Dark Multi Page Layout1</a></li>
<li><a href="index-dark-mp-layout2.html">Dark Multi Page Layout2</a></li>
<li><a href="index-dark-mp-layout3.html">Dark Multi Page Layout3</a></li>
<li><a href="index-dark-mp-layout4.html">Dark Multi Page Layout4</a></li>
<li><a href="index-dark-mp-layout5.html">Dark Multi Page Layout5</a></li>
<li><a href="index-dark-sp-layout1.html">Dark Single Page Layout1</a></li>
<li><a href="index-dark-sp-layout2.html">Dark Single Page Layout2</a></li>
<li><a href="index-dark-sp-layout3.html">Dark Single Page Layout3</a></li>
<li><a href="index-dark-sp-layout4.html">Dark Single Page Layout4</a></li>
<li><a href="index-dark-sp-layout5.html">Dark Single Page Layout5</a></li>
</ul>
</li>
<li><a href="#">Magazine Home Layouts <span class="label label-warning">New</span></a>
<ul class="dropdown">
<li><a href="index-hot-magazine-home-layout1.html">Magazine Home layout1</a></li>
<li><a href="index-hot-magazine-home-layout2.html">Magazine Home layout2</a></li>
</ul>
</li>
<li><a href="#">Portfolio Home Layouts <span class="label label-warning">New</span></a>
<ul class="dropdown">
<li><a href="index-hot-portfolio-presentation-layout1.html">Portfolio Presentation Layout1</a></li>
<li><a href="index-hot-portfolio-presentation-layout2.html">Portfolio Presentation Layout2</a></li>
<li><a href="index-hot-portfolio-presentation-layout3.html">Portfolio Presentation Layout3</a></li>
</ul>
</li>
<li><a href="index-hot-shop-home.html">Shop Home <span class="label label-warning">New</span></a></li>
<li><a href="#">Home Variations <span class="label label-warning">New</span></a>
<ul class="dropdown">
<li><a href="#">Rev Slider</a>
<ul class="dropdown">
<li><a href="index-home-variation-revslider-style1.html">Layout1</a></li>
<li><a href="index-home-variation-revslider-style2.html">Layout2</a></li>
</ul>
</li>
<li><a href="#">Maximage Slider</a>
<ul class="dropdown">
<li><a href="index-home-variation-maximageslider-style1.html">Layout1</a></li>
<li><a href="index-home-variation-maximageslider-style2.html">Layout2</a></li>
<li><a href="index-home-variation-maximageslider-style3.html">Layout3</a></li>
</ul>
</li>
<li><a href="index-home-variation-owl-carousel.html">Owl Slider</a></li>
<li><a href="index-home-variation-typed-text.html">Typed Text Layout</a></li>
<li><a href="index-home-variation-video-background.html">Youtube Background Video</a></li>
<li><a href="index-home-variation-html5-video.html">Html5 Background Video</a></li>
<li><a href="index-home-variation-bg-image-parallax.html">Bg Image Parallax Layout</a></li>
<li><a href="index-home-variation-bg-static.html">Bg Static Layout</a></li>
<li><a href="#">Home Appointment Form</a>
<ul class="dropdown">
<li><a href="index-home-variation-appointment-form-style1.html">Layout1</a></li>
<li><a href="index-home-variation-appointment-form-style2.html">Layout2</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Features</a>
<ul class="dropdown">
<li><a href="features-preloader.html">Preloaders</a></li>
<li><a href="#">Header</a>
<ul class="dropdown">
<li><a href="features-header-style1.html">Header Style1</a></li>
<li><a href="features-header-style2.html">Header Style2</a></li>
<li><a href="features-header-style3.html">Header Style3</a></li>
<li><a href="features-header-style4.html">Header Style4</a></li>
<li><a href="features-header-style5.html">Header Style5</a></li>
<li><a href="features-header-style6.html">Header Style6</a></li>
<li><a href="features-header-style7.html">Header Style7</a></li>
</ul>
</li>
<li><a href="#">Page Title</a>
<ul class="dropdown">
<li><a href="features-page-title-text-left.html">Text Left</a></li>
<li><a href="features-page-title-text-center.html">Text Center</a></li>
<li><a href="features-page-title-text-right.html">Text Right</a></li>
<li><a href="features-page-title-mini-version.html">Mini Version</a></li>
<li><a href="features-page-title-big-version.html">Big Version</a></li>
<li><a href="features-page-title-extra-big-version.html">Extra Big Version</a></li>
<li><a href="features-page-title-bg-white.html">Bg White</a></li>
<li><a href="features-page-title-bg-image.html">Bg Image</a></li>
<li><a href="features-page-title-bg-image-parallax.html">Bg Image Parallax</a></li>
<li><a href="features-page-title-bg-video.html">Bg Video</a></li>
<li><a href="features-page-title-full-transparent.html">Full Transparent</a></li>
</ul>
</li>
<li><a href="#">Side Push Panel</a>
<ul class="dropdown">
<li><a href="features-side-push-panel-left-overlay.html">Left Overlay</a></li>
<li><a href="features-side-push-panel-left-push.html">Left Push</a></li>
<li><a href="features-side-push-panel-right-overlay.html">Right Overlay</a></li>
<li><a href="features-side-push-panel-right-push.html">Right Push</a></li>
</ul>
</li>
<li><a href="#">Form</a>
<ul class="dropdown">
<li><a href="#">Subscribe Form</a>
<ul class="dropdown">
<li><a href="form-subscribe.html">Form style 1</a></li>
</ul>
</li>
<li><a href="#">Appointment Form</a>
<ul class="dropdown">
<li><a href="form-appointment-style1.html">Form style 1</a></li>
<li><a href="form-appointment-style2.html">Form style 2</a></li>
<li><a href="form-appointment-style3.html">Form style 3</a></li>
</ul>
</li>
<li><a href="#">Job Apply Form</a>
<ul class="dropdown">
<li><a href="form-job-apply-style1.html">Form style 1</a></li>
<li><a href="form-job-apply-style2.html">Form style 2</a></li>
<li><a href="form-job-apply-style3.html">Form style 3</a></li>
</ul>
</li>
<li><a href="#">Quick Contact Form</a>
<ul class="dropdown">
<li><a href="form-quick-contact-style1.html">Form style 1</a></li>
<li><a href="form-quick-contact-style2.html">Form style 2</a></li>
<li><a href="form-quick-contact-style3.html">Form style 3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Paypal Form <span class="label label-success">New</span></a>
<ul class="dropdown">
<li><a href="#">Donation Onetime</a>
<ul class="dropdown">
<li><a href="form-paypal-donate-onetime-style1.html">Style1</a></li>
<li><a href="form-paypal-donate-onetime-style2.html">Style2</a></li>
<li><a href="form-paypal-donate-onetime-style3.html">Style3</a></li>
<li><a href="form-paypal-donate-onetime-style4.html">Style4</a></li>
<li><a href="form-paypal-donate-onetime-style5.html">Style5</a></li>
<li><a href="form-paypal-donate-onetime-style6.html">Style6</a></li>
<li><a href="form-paypal-donate-onetime-style7.html">Style7</a></li>
</ul>
</li>
<li><a href="#">Donation Recurring</a>
<ul class="dropdown">
<li><a href="form-paypal-donate-recurring-style1.html">Style1</a></li>
<li><a href="form-paypal-donate-recurring-style2.html"> Style2</a></li>
<li><a href="form-paypal-donate-recurring-style3.html">Style3</a></li>
<li><a href="form-paypal-donate-recurring-style4.html">Style4</a></li>
<li><a href="form-paypal-donate-recurring-style5.html">Style5</a></li>
</ul>
</li>
<li><a href="#">Both Onetime/Recurring</a>
<ul class="dropdown">
<li><a href="form-paypal-donate-both-onetime-recurring-style1.html">Style1</a></li>
<li><a href="form-paypal-donate-both-onetime-recurring-style2.html">Style2</a></li>
<li><a href="form-paypal-donate-both-onetime-recurring-style3.html">Style3</a></li>
<li><a href="form-paypal-donate-both-onetime-recurring-style4.html">Style4</a></li>
<li><a href="form-paypal-donate-both-onetime-recurring-style5.html">Style5</a></li>
</ul>
</li>
<li><a href="form-paypal-cart-style1.html">Cart Payment</a></li>
<li><a href="form-paypal-order-style1.html">Order Payment Style1</a></li>
<li><a href="form-paypal-order-style2.html">Order Payment Style2</a></li>
</ul>
</li>
<li><a href="#">Popup Promo Box</a>
<ul class="dropdown">
<li><a href="features-popup-promo-box.html">Default</a></li>
<li><a href="features-popup-promo-box-cookie-enabled.html">Cookie Enabled</a></li>
</ul>
</li>
<li><a href="#">Footer</a>
<ul class="dropdown">
<li><a href="features-footer-style1.html#footer">Footer One</a></li>
<li><a href="features-footer-style2.html#footer">Footer Two</a></li>
<li><a href="features-footer-style3.html#footer">Footer Three</a></li>
<li><a href="features-footer-style4.html#footer">Footer Four</a></li>
<li><a href="features-footer-style5.html#footer">Footer Five</a></li>
<li><a href="features-footer-style6.html#footer">Footer Six</a></li>
<li><a href="features-footer-style7.html#footer">Footer Seven</a></li>
<li><a href="features-footer-style8.html#footer">Footer Eight</a></li>
<li><a href="features-footer-style9.html#footer">Footer Nine</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Pages</a>
<ul class="dropdown">
<li><a href="#">About</a>
<ul class="dropdown">
<li><a href="page-about1.html">About Style 1</a></li>
<li><a href="page-about2.html">About Style 2</a></li>
</ul>
</li>
<li><a href="#">Services</a>
<ul class="dropdown">
<li><a href="page-services-style1.html">Services Style 1</a></li>
<li><a href="page-services-style2.html">Services Style 2</a></li>
<li><a href="page-services-details.html">Service Details</a></li>
</ul>
</li>
<li><a href="#">Team</a>
<ul class="dropdown">
<li><a href="page-team-style1.html">Team Style 1</a></li>
<li><a href="page-team-style2.html">Team Style 2</a></li>
<li><a href="page-team-member-details.html">Team Member Details</a></li>
</ul>
</li>
<li><a href="#">Pricing</a>
<ul class="dropdown">
<li><a href="page-pricing-style1.html">Pricing Style 1</a></li>
<li><a href="page-pricing-style2.html">Pricing Style 2</a></li>
</ul>
</li>
<li><a href="page-timetable.html">Timetable</a></li>
<li><a href="#">Calender</a>
<ul class="dropdown">
<li><a href="page-calendar1.html">Calendar Style1</a></li>
<li><a href="page-calendar2.html">Calendar Style2</a></li>
</ul>
</li>
<li><a href="#">Events</a>
<ul class="dropdown">
<li><a href="#">Events Grid</a>
<ul class="dropdown">
<li><a href="events-grid-2column.html">Grid 2column</a></li>
<li><a href="events-grid-3column.html">Grid 3column</a></li>
<li><a href="events-grid-4column.html">Grid 4column</a></li>
<li><a href="events-grid-left-sidebar.html">Grid Left Sidebar</a></li>
<li><a href="events-grid-right-sidebar.html">Grid Right Sidebar</a></li>
</ul>
</li>
<li><a href="#">Events List</a>
<ul class="dropdown">
<li><a href="events-list-left-sidebar.html">List Left Sidebar</a></li>
<li><a href="events-list-right-sidebar.html">List Right Sidebar</a></li>
<li><a href="events-list-no-sidebar.html">List No Sidebar</a></li>
</ul>
</li>
<li><a href="#">Events Details</a>
<ul class="dropdown">
<li><a href="events-details-style1.html">Details Style1</a></li>
<li><a href="events-details-style2.html">Details Style2</a></li>
<li><a href="events-details-style3.html">Details Style3</a></li>
</ul>
</li>
<li><a href="events-table.html">Events Table</a></li>
</ul>
</li>
<li><a href="#">Job <span class="label label-success">New</span></a>
<ul class="dropdown">
<li><a href="job-list.html">Job List</a></li>
<li><a href="job-details-style1.html">Job Details Style1</a></li>
<li><a href="job-details-style2.html">Job Details Style2</a></li>
</ul>
</li>
<li><a href="#">FAQ</a>
<ul class="dropdown">
<li><a href="page-faq-style1.html">FAQ Style1</a></li>
<li><a href="page-faq-style2.html">FAQ Style2</a></li>
<li><a href="page-faq-style3.html">FAQ Style3</a></li>
<li><a href="page-faq-style4.html">FAQ Style4</a></li>
</ul>
</li>
<li><a href="#">Page 404</a>
<ul class="dropdown">
<li><a href="page-404-style1.html">style1</a></li>
<li><a href="page-404-style2.html">style2</a></li>
<li><a href="page-404-style3.html">style3</a></li>
</ul>
</li>
<li><a href="#">Shop</a>
<ul class="dropdown">
<li><a href="shop-category.html">Category</a></li>
<li><a href="shop-category-sidebar.html">Category Sidebar</a></li>
<li><a href="shop-product-details.html">Product Details</a></li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
</li>
<li><a href="#">Coming Soon</a>
<ul class="dropdown">
<li><a href="page-coming-soon-style1.html">style1</a></li>
<li><a href="page-coming-soon-style2.html">style2</a></li>
<li><a href="page-coming-soon-style3.html">style3</a></li>
</ul>
</li>
<li><a href="#">Under Construction</a>
<ul class="dropdown">
<li><a href="page-under-construction-style1.html">style1</a></li>
<li><a href="page-under-construction-style2.html">style2</a></li>
<li><a href="page-under-construction-style3.html">style3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Gallery</a>
<ul class="dropdown">
<li><a href="page-gallery-3col.html">3 Columns</a></li>
<li><a href="page-gallery-3col-only-image.html">3 Columns Only Image</a></li>
<li><a href="page-gallery-4col.html">4 Columns</a></li>
<li><a href="page-gallery-4col-only-image.html">4 Columns Only Image</a></li>
<li><a href="page-gallery-grid.html">Grids (2-10 Columns)</a></li>
<li><a href="page-gallery-grid-animation.html">Grids with Animation (2-10 Columns)</a></li>
<li><a href="page-gallery-3col-tiles.html">3 Columns Tiles</a></li>
<li><a href="page-gallery-4col-tiles.html">4 Columns Tiles</a></li>
<li><a href="page-gallery-masonry-tiles.html">Tiles (2-10 Columns)</a></li>
<li><a href="page-gallery-masonry-tiles-animation.html">Tiles with Animation (2-10 Columns)</a></li>
<li><a href="page-gallery-prettyphoto.html">Pretty Photo Gallery</a></li>
</ul>
</li>
<li><a href="#">Blog</a>
<ul class="dropdown">
<li><a href="#">Blog Classic</a>
<ul class="dropdown">
<li><a href="blog-classic-no-sidebar.html">Blog Classic No Sidebar</a></li>
<li><a href="blog-classic-left-sidebar.html">Blog Classic Left Sidebar</a></li>
<li><a href="blog-classic-right-sidebar.html">Blog Classic Right Sidebar</a></li>
<li><a href="blog-classic-both-sidebar.html">Blog Classic Both Sidebar</a></li>
<li><a href="blog-classic-left-thumbs.html">Blog Classic Left Thumbs</a></li>
</ul>
</li>
<li><a href="#">Blog Grid</a>
<ul class="dropdown">
<li><a href="blog-grid-2-column.html">Blog Grid 2 Column</a></li>
<li><a href="blog-grid-3-column.html">Blog Grid 3 Column</a></li>
<li><a href="blog-grid-4-column.html">Blog Grid 4 Column</a></li>
</ul>
</li>
<li><a href="#">Blog Masonry</a>
<ul class="dropdown">
<li><a href="blog-masonry-2-column.html">Blog Masonry 2 Column</a></li>
<li><a href="blog-masonry-3-column.html">Blog Masonry 3 Column</a></li>
<li><a href="blog-masonry-4-column.html">Blog Masonry 4 Column</a></li>
</ul>
</li>
<li><a href="#">Blog Single</a>
<ul class="dropdown">
<li><a href="blog-single-no-sidebar.html">Blog Single No Sidebar</a></li>
<li><a href="blog-single-left-sidebar.html">Blog Single Left Sidebar</a></li>
<li><a href="blog-single-right-sidebar.html">Blog Single Right Sidebar</a></li>
<li><a href="blog-single-both-sidebar.html">Blog Single Both Sidebar</a></li>
<li><a href="blog-single-disqus-comments.html">Blog Single Discuss Comments</a></li>
<li><a href="blog-single-facebook-comments.html">Blog Single Facebook Comments</a></li>
</ul>
</li>
<li><a href="#">Blog Infinity Scroll</a>
<ul class="dropdown">
<li><a href="blog-extra-infinity-scroll.html">Blog Infinity Scroll Default</a></li>
<li><a href="blog-extra-infinity-scroll-lazyload.html">Blog Infinity Scroll Lazyload</a></li>
</ul>
</li>
<li><a href="#">Blog Timeline</a>
<ul class="dropdown">
<li><a href="blog-timeline.html">Blog Timeline Default</a></li>
<li><a href="blog-timeline-masonry.html">Blog Timeline Masonry</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Contact</a>
<ul class="dropdown">
<li><a href="page-contact1.html">Contact style 1</a></li>
<li><a href="page-contact2.html">Contact style 2</a></li>
<li><a href="page-contact3.html">Contact style 3</a></li>
<li><a href="page-contact4.html">Contact style 4</a></li>
<li><a href="page-contact5-with-multiple-marker.html">Contact 5 - Multiple Marker</a></li>
<li><a href="page-contact6-with-multiple-marker.html">Contact 6 - Multiple Marker</a></li>
</ul>
</li>
<li><a href="javascript:void(0)">Shortcodes</a>
<div class="megamenu">
<div class="megamenu-row">
<div class="col3">
<ul class="list-unstyled list-dashed">
<li><a href="shortcode-accordion.html"><i class="fa fa-list-ul"></i> Accordion</a></li>
<li><a href="shortcode-alerts.html"><i class="fa fa-exclamation-circle"></i> Alerts</a></li>
<li><a href="shortcode-animations.html"><i class="fa fa-magic"></i> Animations</a></li>
<li><a href="shortcode-background-html5-video.html"><i class="fa fa-video-camera"></i> HTML5 Background Video</a></li>
<li><a href="shortcode-blockquotes.html"><i class="fa fa-quote-right"></i> Blockquotes</a></li>
<li><a href="shortcode-button-groups-and-dropdowns.html"><i class="fa fa-link"></i> Button Groups</a></li>
<li><a href="shortcode-button-hover-effect.html"><i class="fa fa-flag-o"></i> Button Hover Effect</a></li>
<li><a href="shortcode-buttons.html"><i class="fa fa-external-link"></i> Buttons</a></li>
<li><a href="shortcode-call-to-actions.html"><i class="fa fa-plus-square"></i> Call To Actions</a></li>
<li><a href="shortcode-charts.html"><i class="fa fa-pie-chart"></i> Charts</a></li>
<li><a href="shortcode-columns-grids.html"><i class="fa fa-columns"></i> Columns Grids</a></li>
<li><a href="shortcode-divider.html"><i class="fa fa-indent"></i> Divider</a></li>
<li><a href="shortcode-dropcaps.html"><i class="fa fa-bold"></i> Dropcaps</a></li>
<li><a href="shortcode-datetime-datepicker.html"><i class="fa fa-calendar"></i> Date Picker</a></li>
<li><a href="shortcode-datetime-timepicker.html"><i class="fa fa-calendar"></i> Time Picker</a></li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li><a href="shortcode-datetime-datetimepicker.html"><i class="fa fa-calendar"></i> Bootstrap Date-Time Picker</a></li>
<li><a href="shortcode-datetime-datepair.html"><i class="fa fa-calendar"></i> Date Pair</a></li>
<li><a href="shortcode-flickr-feed.html"><i class="fa fa-flickr"></i> Flickr Feed</a></li>
<li><a href="shortcode-flipbox.html"><i class="fa fa-square"></i> Flipbox</a></li>
<li><a href="shortcode-forms.html"><i class="fa fa-align-justify"></i> Forms</a></li>
<li><a href="shortcode-iconbox.html"><i class="fa fa-unsorted"></i> Icon Box</a></li>
<li><a href="shortcode-icon-7stroke.html"><i class="fa fa-circle-o"></i> Icons 7stroke</a></li>
<li><a href="shortcode-icon-elegant-icons.html"><i class="fa fa-eye-slash"></i> Icons Elegant</a></li>
<li><a href="shortcode-icon-flat-color-icons.html"><i class="fa fa-i-cursor"></i> Icons Flat Color</a></li>
<li><a href="shortcode-icon-fontawesome.html"><i class="fa fa-fort-awesome"></i> Icons FontAwesome</a></li>
<li><a href="shortcode-icon-fontawesome-tutorial.html"><i class="fa fa-fonticons"></i> Icons FontAwesome Tutorial</a></li>
<li><a href="shortcode-icon-strokegap.html"><span class="strokegap-icon strokegap-icon-WorldWide"></span> Icons Strokegap</a></li>
<li><a href="shortcode-image-box.html"><i class="fa fa-file-image-o"></i> Image Box</a></li>
<li><a href="shortcode-instagram.html"><i class="fa fa-instagram"></i> Instagram Feed</a></li>
<li><a href="shortcode-labels-badges.html"><i class="fa fa-check-square-o"></i> Labels Badges</a></li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li><a href="shortcode-listgroup-panels.html"><i class="fa fa-th-list"></i> Listgroup Panels</a></li>
<li><a href="shortcode-lists.html"><i class="fa fa-list"></i> Lists</a></li>
<li><a href="shortcode-maps.html"><i class="fa fa-map-o"></i> Maps</a></li>
<li><a href="shortcode-media-embed.html"><i class="fa fa-play-circle-o"></i> Media Embed</a></li>
<li><a href="shortcode-modal-bootstrap.html"><i class="fa fa-search-plus"></i> Modal</a></li>
<li><a href="shortcode-modal-lightbox.html"><i class="fa fa-expand"></i> Lightbox</a></li>
<li><a href="shortcode-navigation.html"><i class="fa fa-navicon"></i> Navigation</a></li>
<li><a href="shortcode-owl-carousel.html"><i class="fa fa-sliders"></i> Owl Carousel</a></li>
<li><a href="shortcode-pagination.html"><i class="fa fa-arrow-circle-o-right"></i> Pagination</a></li>
<li><a href="shortcode-progressbar.html"><i class="fa fa-tasks"></i> Progress Bars</a></li>
<li><a href="shortcode-responsive.html"><i class="fa fa-tablet"></i> Responsive</a></li>
<li><a href="shortcode-separator.html"><i class="fa fa-minus-square-o"></i> Separator</a></li>
<li><a href="shortcode-sitemap.html"><i class="fa fa-sitemap"></i> Sitemap</a></li>
<li><a href="shortcode-sliders.html"><i class="fa fa-sliders"></i> Sliders</a></li>
<li><a href="shortcode-smoothscrolling.html"><i class="fa fa-binoculars"></i> Smoothscrolling</a></li>
</ul>
</div>
<div class="col3">
<ul class="list-unstyled list-dashed">
<li><a href="shortcode-styled-icons.html"><i class="fa fa-facebook-square"></i> Styled Icons</a></li>
<li><a href="shortcode-subscribe.html"><i class="fa fa-user-plus"></i> Subscribe</a></li>
<li><a href="shortcode-tables.html"><i class="fa fa-table"></i> Tables</a></li>
<li><a href="shortcode-tabs.html"><i class="fa fa-indent"></i> Tabs</a></li>
<li><a href="shortcode-textblock.html"><i class="fa fa-bold"></i> Textblock</a></li>
<li><a href="shortcode-thumbnails-carousels.html"><i class="fa fa-sliders"></i> Thumbnails/carousels</a></li>
<li><a href="shortcode-title.html"><i class="fa fa-text-height"></i> Title</a></li>
<li><a href="shortcode-timer-final-countdown.html"><i class="fa fa-text-height"></i> Timer Final Countdown</a></li>
<li><a href="shortcode-timer-flipclock.html"><i class="fa fa-text-height"></i> Timer Flipclock</a></li>
<li><a href="shortcode-timer-slick-circular.html"><i class="fa fa-text-height"></i> Timer Slick Circular</a></li>
<li><a href="shortcode-twitter.html"><i class="fa fa-twitter-square"></i> Twitter Feed</a></li>
<li><a href="shortcode-typography.html"><i class="fa fa-font"></i> Typography</a></li>
<li><a href="shortcode-vertical-timeline.html"><i class="fa fa-arrows-v"></i> Vertical Timeline</a></li>
<li><a href="shortcode-widgets.html"><i class="fa fa-gift"></i> Widgets</a></li>
<li><a href="shortcode-working-process.html"><i class="fa fa-exchange"></i> Working Process</a></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- Start main-content -->
<div class="main-content">
<!-- Section: inner-header -->
<section class="inner-header divider parallax layer-overlay overlay-white-8" data-bg-img="images/bg/bg6.jpg">
<div class="container pt-60 pb-60">
<!-- Section Content -->
<div class="section-content">
<div class="row">
<div class="col-md-12 text-center">
<h3 class="title">Paypal Onetime/Recurring Donation</h3>
<ol class="breadcrumb text-center text-black mt-10">
<li><a href="#">Home</a></li>
<li><a href="#">Pages</a></li>
<li class="active text-theme-colored">Page Title</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<p class="lead">Thank you for making a donation to our charitable organization. Please use the form below to pay your desired giving amount.</p>
<hr>
<!-- Paypal Both Onetime/Recurring Form Starts -->
<form id="paypal_donate_form_onetime_recurring">
<div class="row">
<div class="col-md-12">
<div class="form-group mb-20">
<label><strong>Payment Type</strong></label> <br>
<label class="radio-inline">
<input type="radio" checked="" value="one_time" name="payment_type">
One Time
</label>
<label class="radio-inline">
<input type="radio" value="recurring" name="payment_type">
Recurring
</label>
</div>
</div>
<div class="col-sm-12" id="donation_type_choice">
<div class="form-group mb-20">
<label><strong>Donation Type</strong></label>
<div class="radio mt-5">
<label class="radio-inline">
<input type="radio" value="D" name="t3" checked="">
Daily</label>
<label class="radio-inline">
<input type="radio" value="W" name="t3">
Weekly</label>
<label class="radio-inline">
<input type="radio" value="M" name="t3">
Monthly</label>
<label class="radio-inline">
<input type="radio" value="Y" name="t3">
Yearly</label>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="form-group mb-20">
<label><strong>I Want to Donate for</strong></label>
<select name="item_name" class="form-control">
<option value="Educate Children">Educate Children</option>
<option value="Child Camps">Child Camps</option>
<option value="Clean Water for Life">Clean Water for Life</option>
<option value="Campaign for Child Poverty">Campaign for Child Poverty</option>
</select>
</div>
</div>
<div class="col-sm-12">
<div class="form-group mb-20">
<label><strong>Currency</strong></label>
<select name="currency_code" class="form-control">
<option value="">Select Currency</option>
<option value="USD" selected="selected">USD - U.S. Dollars</option>
<option value="AUD">AUD - Australian Dollars</option>
<option value="BRL">BRL - Brazilian Reais</option>
<option value="GBP">GBP - British Pounds</option>
<option value="HKD">HKD - Hong Kong Dollars</option>
<option value="HUF">HUF - Hungarian Forints</option>
<option value="INR">INR - Indian Rupee</option>
<option value="ILS">ILS - Israeli New Shekels</option>
<option value="JPY">JPY - Japanese Yen</option>
<option value="MYR">MYR - Malaysian Ringgit</option>
<option value="MXN">MXN - Mexican Pesos</option>
<option value="TWD">TWD - New Taiwan Dollars</option>
<option value="NZD">NZD - New Zealand Dollars</option>
<option value="NOK">NOK - Norwegian Kroner</option>
<option value="PHP">PHP - Philippine Pesos</option>
<option value="PLN">PLN - Polish Zlotys</option>
<option value="RUB">RUB - Russian Rubles</option>
<option value="SGD">SGD - Singapore Dollars</option>
<option value="SEK">SEK - Swedish Kronor</option>
<option value="CHF">CHF - Swiss Francs</option>
<option value="THB">THB - Thai Baht</option>
<option value="TRY">TRY - Turkish Liras</option>
</select>
</div>
</div>
<div class="col-sm-12">
<div class="form-group mb-20">
<label><strong>How much do you want to donate?</strong></label>
<select name="amount" class="form-control">
<option value="20">20</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="200">200</option>
<option value="500">500</option>
<option value="other">Other Amount</option>
</select>
<div id="custom_other_amount">
<label><strong>Custom Amount:</strong></label>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="form-group mb-20">
<input type="image" src="../../../../../www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.png" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" src="../../../../../www.paypal.com/en_US/i/scr/pixel.html" width="1" height="1">
</div>
</div>
</div>
</form>
<!-- Script for Donation Form Custom Amount -->
<script type="text/javascript">
$(document).ready(function(e) {
var $donation_form = $("#paypal_donate_form_onetime_recurring");
//toggle custom amount
var $custom_other_amount = $donation_form.find("#custom_other_amount");
$custom_other_amount.hide();
$donation_form.find("select[name='amount']").change(function() {
var $this = $(this);
if ($this.val() == 'other') {
$custom_other_amount.show().append('<div class="input-group"><span class="input-group-addon">$</span> <input id="input_other_amount" type="text" name="amount" class="form-control" value="100"/></div>');
}
else{
$custom_other_amount.children( ".input-group" ).remove();
$custom_other_amount.hide();
}
});
//toggle donation_type_choice
var $donation_type_choice = $donation_form.find("#donation_type_choice");
$donation_type_choice.hide();
$("input[name='payment_type']").change(function() {
if (this.value == 'recurring') {
$donation_type_choice.show();
}
else {
$donation_type_choice.hide();
}
});
// submit form on click
$donation_form.on('submit', function(e){
$( "#paypal_donate_form-onetime" ).submit();
var item_name = $donation_form.find("select[name='item_name'] option:selected").val();
var currency_code = $donation_form.find("select[name='currency_code'] option:selected").val();
var amount = $donation_form.find("select[name='amount'] option:selected").val();
var t3 = $donation_form.find("input[name='t3']:checked").val();
if ( amount == 'other') {
amount = $donation_form.find("#input_other_amount").val();
}
// submit proper form now
if ( $("input[name='payment_type']:checked", $donation_form).val() == 'recurring' ) {
var recurring_form = $('#paypal_donate_form-recurring');
recurring_form.find("input[name='item_name']").val(item_name);
recurring_form.find("input[name='currency_code']").val(currency_code);
recurring_form.find("input[name='a3']").val(amount);
recurring_form.find("input[name='t3']").val(t3);
recurring_form.find("input[type='submit']").trigger('click');
} else if ( $("input[name='payment_type']:checked", $donation_form).val() == 'one_time' ) {
var onetime_form = $('#paypal_donate_form-onetime');
onetime_form.find("input[name='item_name']").val(item_name);
onetime_form.find("input[name='currency_code']").val(currency_code);
onetime_form.find("input[name='amount']").val(amount);
onetime_form.find("input[type='submit']").trigger('click');
}
return false;
});
});
</script>
<!-- Paypal Onetime Form -->
<form id="paypal_donate_form-onetime" class="hidden" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="item_name" value="Educate Children"> <!-- updated dynamically -->
<input type="hidden" name="currency_code" value="USD"> <!-- updated dynamically -->
<input type="hidden" name="amount" value="20"> <!-- updated dynamically -->
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="cn" value="Comments...">
<input type="hidden" name="tax" value="0">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="bn" value="PP-DonationsBF">
<input type="hidden" name="return" value="http://www.yoursite.com/thankyou.html">
<input type="hidden" name="cancel_return" value="http://www.yoursite.com/paymentcancel.html">
<input type="hidden" name="notify_url" value="http://www.yoursite.com/notifypayment.php">
<input type="submit" name="submit">
</form>
<!-- Paypal Recurring Form -->
<form id="paypal_donate_form-recurring" class="hidden" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="item_name" value="Educate Children"> <!-- updated dynamically -->
<input type="hidden" name="currency_code" value="USD"> <!-- updated dynamically -->
<input type="hidden" name="a3" value="20"> <!-- updated dynamically -->
<input type="hidden" name="t3" value="D"> <!-- updated dynamically -->
<input type="hidden" name="p3" value="1">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="bn" value="PP-DonationsBF">
<input type="hidden" name="return" value="http://www.yoursite.com/thankyou.html">
<input type="hidden" name="cancel_return" value="http://www.yoursite.com/paymentcancel.html">
<input type="hidden" name="notify_url" value="http://www.yoursite.com/notifypayment.php">
<input type="submit" name="submit">
</form>
<!-- Paypal Both Onetime/Recurring Form Ends -->
</div>
</div>
</div>
</section>
</div>
<!-- end main-content -->
<!-- Footer -->
<footer id="footer" class="bg-black-222">
<div class="container pt-70 pb-30">
<div class="row border-bottom-black">
<div class="col-sm-6 col-md-3">
<div class="widget dark">
<img class="mb-20" alt="" src="images/logo-wide-white.png">
<p>Lorem ipsum dolor sit amet, consecte tur adipisi cing elit lestias eius illum libero dolor nobis deleniti.</p>
<p>203, Envato Labs, Behind Alis Steet, Melbourne, Australia.</p>
<ul class="list-inline mt-5">
<li class="m-0 pl-10 pr-10"> <i class="fa fa-phone text-theme-colored mr-5"></i> <a class="text-gray" href="#">123-456-789</a> </li>
<li class="m-0 pl-10 pr-10"> <i class="fa fa-envelope-o text-theme-colored mr-5"></i> <a class="text-gray" href="#">[email protected]</a> </li>
<li class="m-0 pl-10 pr-10"> <i class="fa fa-globe text-theme-colored mr-5"></i> <a class="text-gray" href="#">www.yourdomain.com</a> </li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="widget dark">
<h5 class="widget-title line-bottom">Useful Links</h5>
<ul class="list angle-double-right list-border">
<li><a href="#">Body Building</a></li>
<li><a href="#">Fitness Classes</a></li>
<li><a href="#">Weight lifting</a></li>
<li><a href="#">Yoga Courses</a></li>
<li><a href="#">Training</a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="widget dark">
<h5 class="widget-title line-bottom">Twitter Feed</h5>
<div class="twitter-feed list-border clearfix" data-username="Envato" data-count="2"></div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="widget dark">
<h5 class="widget-title line-bottom">Latest News</h5>
<div class="latest-posts">
<article class="post media-post clearfix pb-0 mb-10">
<a href="#" class="post-thumb"><img alt="" src="http://placehold.it/80x55"></a>
<div class="post-right">
<h5 class="post-title mt-0 mb-5"><a href="#">Sustainable Construction</a></h5>
<p class="post-date mb-0 font-12">Mar 08, 2015</p>
</div>
</article>
<article class="post media-post clearfix pb-0 mb-10">
<a href="#" class="post-thumb"><img alt="" src="http://placehold.it/80x55"></a>
<div class="post-right">
<h5 class="post-title mt-0 mb-5"><a href="#">Industrial Coatings</a></h5>
<p class="post-date mb-0 font-12">Mar 08, 2015</p>
</div>
</article>
<article class="post media-post clearfix pb-0 mb-10">
<a href="#" class="post-thumb"><img alt="" src="http://placehold.it/80x55"></a>
<div class="post-right">
<h5 class="post-title mt-0 mb-5"><a href="#">Storefront Installations</a></h5>
<p class="post-date mb-0 font-12">Mar 08, 2015</p>
</div>
</article>
</div>
</div>
</div>
</div>
<div class="row mt-30">
<div class="col-md-5">
<div class="widget dark">
<h5 class="widget-title mb-10">Subscribe Us</h5>
<!-- Mailchimp Subscription Form Starts Here -->
<form id="mailchimp-subscription-form-footer" class="newsletter-form">
<div class="input-group">
<input type="email" value="" name="EMAIL" placeholder="Your Email" class="form-control input-lg font-16" data-height="45px" id="mce-EMAIL-footer" style="height: 45px;">
<span class="input-group-btn">
<button data-height="45px" class="btn btn-colored btn-theme-colored btn-xs m-0 font-14" type="submit">Subscribe</button>
</span>
</div>
</form>
<!-- Mailchimp Subscription Form Validation-->
<script type="text/javascript">
$('#mailchimp-subscription-form-footer').ajaxChimp({
callback: mailChimpCallBack,
url: '//thememascot.us9.list-manage.com/subscribe/post?u=a01f440178e35febc8cf4e51f&id=49d6d30e1e'
});
function mailChimpCallBack(resp) {
// Hide any previous response text
var $mailchimpform = $('#mailchimp-subscription-form-footer'),
$response = '';
$mailchimpform.children(".alert").remove();
if (resp.result === 'success') {
$response = '<div class="alert alert-success"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' + resp.msg + '</div>';
} else if (resp.result === 'error') {
$response = '<div class="alert alert-danger"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' + resp.msg + '</div>';
}
$mailchimpform.prepend($response);
}
</script>
<!-- Mailchimp Subscription Form Ends Here -->
</div>
</div>
<div class="col-md-3 col-md-offset-1">
<div class="widget dark">
<h5 class="widget-title mb-10">Call Us Now</h5>
<div class="text-gray">
+61 3 1234 5678 <br>
+12 3 1234 5678
</div>
</div>
</div>
<div class="col-md-3">
<div class="widget dark">
<h5 class="widget-title mb-10">Connect With Us</h5>
<ul class="styled-icons icon-dark icon-circled icon-sm">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
<li><a href="#"><i class="fa fa-youtube"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-pinterest"></i></a></li>
</ul>
</div>
</div>
</div>