generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rendered-html-for-validation-checkout.txt
1597 lines (937 loc) · 57.4 KB
/
rendered-html-for-validation-checkout.txt
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
<!-- BASE HTML FOR THE PROJECT -->
<!-- Started from Bootstrap starter template: https://getbootstrap.com/docs/4.4/getting-started/introduction/, copied on March 1st, 2020, at 00:10, and later modified. -->
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta http-equiv="X-UA-Compatible" content="ie=edge"><!-- From Code Institute "Project - Boutique Ado", copie on February 28th, 2022, at 23:59 -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Code Institute Student Milestone Project 5, an e-commerce application that sells
digital elevation models, gravimetry, magnetometry and resistivity data; along with training, books and software
for data acquisition and processing.">
<meta name="keywords" content="DEM books, DEM data, DEM software, DEM training, Geophysical data, Buy DEM data,
Geophysical book, Buy Resistivity data, Gravimetry data, Buy Gravimetry data, Resistivity books, Buy Magnetometry data,
Magnetometry software, Gravimetry books, Buy geophysical data, Magnetometry books, DEM, Geophysical,
Code Institute, software development, full-stack course, milestone project">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="/static/css/base.css">
<!-- MAILCHIMP */
Generated and copied on April 6th, 2022, at 3:10, in Mailchip account (Mailchimp: Marketing,
Automation & Email Platform, https://mailchimp.com) -->
<!-- Begin Mailchimp Signup Form -->
<link href="//cdn-images.mailchimp.com/embedcode/classic-10_7_dtp.css" rel="stylesheet" type="text/css">
<!--End mc_embed_signup-->
<link rel="stylesheet" href="/static/css/checkout.css">
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<title>GDEC </title>
<link rel="shortcut icon" href="/static/images/gdec-icon.PNG"/>
</head>
<body>
<header id="main-header" class="container-fluid fixed-top">
<div id="topnav" class="row d-none pt-sm-2 d-md-flex">
<div class="col-12 col-md-3 col-lg-3
my-auto py-1 py-lg-0 text-center text-md-left">
<a href="/" class="nav-link">
<!-- Font Awesome Icon as logo -->
<h2 class="logo-front my-0"><i class="fa fa-paw" aria-hidden="true"></i><strong> GDEC</strong></h2>
</a>
</div>
<div class="col-12 col-md-3 col-lg-4
my-auto py-1 py-md-0">
<form method="GET" action="/products/">
<div class="input-group w-100">
<input id="search-input" class="form-control border-primary rounded-0" type="text" name="q" placeholder="Search our site">
<label for="search-input" hidden>Search Field for Products</label>
<div class="input-group-append">
<button class="form-control btn border-primary rounded-0" type="submit">
<span hidden>
Research Button
</span>
<span class="icon">
<i class="fas fa-search text-primary"></i>
</span>
</button>
</div>
</div>
</form>
</div>
<div class="col-12 col-md-6 col-lg-5
my-auto py-1 py-md-0">
<ul class="list-inline list-unstyled text-center text-md-right my-0">
<li class="list-inline-item dropdown pr-lg-0">
<a class="nav-link" href="#" id="user-options" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<div class="text-center">
<!-- Font Awesome Icon -->
<div><i class="fa fa-user fa-lg" aria-hidden="true"></i></div>
<p class="my-0">My Account</p>
</div>
</a>
<div class="dropdown-menu border-0" aria-labelledby="user-options">
<a href="/products/add/" class="dropdown-item">Product Management</a>
<a href="/profile/" class="dropdown-item">My Profile</a>
<a href="/accounts/logout/" class="dropdown-item">Log Out</a>
</div>
</li>
<li class="list-inline-item my-auto py-1 pl-md-0">
<a class="text-info font-weight-bold nav-link" href="/wish_list/">
<div class="text-center text-primary">
<!-- Font Awesome Icon -->
<div><i class="fa fa-list" aria-hidden="true"></i></div>
<p class="my-0">My Wish List</p>
</div>
</a>
</li>
<li class="list-inline-item my-auto py-1 pl-md-0">
<a class="text-info font-weight-bold nav-link" href="/bag/">
<div class="text-center">
<!-- Font Awesome Icon -->
<div><i class="fa fa-shopping-cart fa-lg text-primary" aria-hidden="true"></i></div>
<p class="my-0 text-primary">
$11.82
</p>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="row">
<nav class="navbar navbar-expand-md navbar-light mx-auto w-100">
<button class="navbar-toggler mt-0 px-0 py-1" type="button" data-toggle="collapse" data-target="#main-nav" aria-controls="main-nav" aria-expanded="false" aria-label="Toggle navigation">
<span hidden>Toggle Button</span>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Copied and modified from Code Institute "Boutique Ado" project on March 1st, 2022, at 13:26 -->
<div class="mx-auto px-auto">
<ul id="cell-phone-icons" class="mx-auto px-0">
<li class="list-inline-item py-0 px-auto">
<a class="nav-link d-block d-md-none pl-0" href="#" id="cell-phone-search" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<div class="text-center">
<div class="cell-phone-nav-button"><i class="fas fa-search fa-lg"></i></div>
<p class="my-0 d-none d-sm-block">Search</p>
</div>
</a>
<div class="dropdown-menu border-0 w-100 px-0 rounded-0 my-0" aria-labelledby="cell-phone-search">
<form class="form" method="GET" action="/products/">
<div class="input-group w-100 mx-2">
<input id="search-field-on-cell-phones" class="form-control border rounded-0" type="text" name="q" placeholder="Search our site">
<label for="search-field-on-cell-phones" hidden>Search Field in Cell Phone</label>
<div class="input-group-append">
<button class="form-control form-control btn border rounded-0" type="submit">
<span hidden>
Research Button
</span>
<span class="icon">
<i class="fas fa-search"></i>
</span>
</button>
</div>
</div>
</form>
</div>
</li>
<li class="list-inline-item dropdown py-0 px-0">
<a class="nav-link d-block d-md-none" href="#" id="user-options-cell" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<div class="text-center">
<!-- Font Awesome Icon -->
<div class="cell-phone-nav-button"><i class="fa fa-user fa-lg" aria-hidden="true"></i></div>
<p class="my-0 d-none d-sm-block">My Account</p>
</div>
</a>
<div class="dropdown-menu border-0" aria-labelledby="user-options-cell">
<a href="/products/add/" class="dropdown-item">Product Management</a>
<a href="/profile/" class="dropdown-item">My Profile</a>
<a href="/accounts/logout/" class="dropdown-item">Log Out</a>
</div>
</li>
<li class="list-inline-item my-auto py-0 pl-md-0 px-0">
<a class="text-info font-weight-bold nav-link d-block d-md-none" href="/wish_list/">
<div class="text-center text-primary">
<!-- Font Awesome Icon -->
<div class="cell-phone-nav-button"><i class="fa fa-list" aria-hidden="true"></i></div>
<p class="my-0 d-none d-sm-block">My Wish List</p>
</div>
</a>
</li>
<li class="list-inline-item py-0 px-0">
<a class="text-primary font-weight-bold nav-link d-block d-md-none px-0" href="/bag/">
<div class="text-center">
<!-- Font Awesome Icon -->
<div class="cell-phone-nav-button"><i class="fa fa-shopping-cart fa-lg" aria-hidden="true"></i></div>
<p class="my-0 d-none d-sm-block">
$11.82
</p>
</div>
</a>
</li>
</ul>
</div>
<div id="log-in-status-header" class="col-12 d-md-none my-0">
<div>
<p class="text-center text-md-right my-0"><strong>Logged in as admin</strong></p>
</div>
</div>
<!-- Copied and modified from Code Institute "Boutique Ado" project on March 1st, 2022, at 13:32 -->
<div class="collapse navbar-collapse" id="main-nav">
<ul class="navbar-nav w-auto mx-auto">
<li class="nav-item d-block d-md-none">
<a class="logo-font font-weight-bold nav-link text-black mr-5" href="/" id="home-link">
Home
</a>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="all-products-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
All Products
</a>
<div class="dropdown-menu border-0" aria-labelledby="all-products-link">
<a href="/products/?sort=name&direction=asc" class="dropdown-item text-primary">By Country</a>
<a href="/products/?sort=category&direction=asc" class="dropdown-item text-primary">By Category</a>
<a href="/products/?sort=price&direction=asc" class="dropdown-item text-primary">By Price</a>
<a href="/products/?sort=name&direction=asc" class="dropdown-item text-primary">All Products</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="dems-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Digital Data
</a>
<div class="dropdown-menu border-0" aria-labelledby="dems-link">
<a href="/products/?category=dem" class="dropdown-item text-primary">Digital Elevation Models</a>
<a href="/products/?category=gravimetry" class="dropdown-item text-primary">Gravimetry</a>
<a href="/products/?category=magnetometry" class="dropdown-item text-primary">Magnetometry</a>
<a href="/products/?category=resistivity" class="dropdown-item text-primary">Resistivity</a>
<a href="/products/?category=dem,gravimetry,magnetometry,resistivity" class="dropdown-item text-primary">All</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="gravimetry-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Reports
</a>
<div class="dropdown-menu border-0" aria-labelledby="gravimetry-link">
<a href="/products/?category=eia" class="dropdown-item text-primary">Environmental Impact Assessments</a>
<a href="/products/?category=geological_maps" class="dropdown-item text-primary">Geological Maps</a>
<a href="/products/?category=weather" class="dropdown-item text-primary">Weather Information</a>
<a href="/products/?category=eia,geological_maps,weather" class="dropdown-item text-primary">All</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="resistivity-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Training
</a>
<div class="dropdown-menu border-0" aria-labelledby="resistivity-link">
<a href="/products/?category=courses" class="dropdown-item text-primary">Courses</a>
<a href="/products/?category=books" class="dropdown-item text-primary">Books</a>
<a href="/products/?category=courses,books" class="dropdown-item text-primary">All</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="magnetometry-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Software
</a>
<div class="dropdown-menu border-0" aria-labelledby="magnetometry-link">
<a href="/products/?category=simulators" class="dropdown-item text-primary">Simulators</a>
<a href="/products/?category=data_processing" class="dropdown-item text-primary">Data Processing</a>
<a href="/products/?category=data_qc" class="dropdown-item text-primary">Data QC</a>
<a href="/products/?category=simulators,data_processing,data_qc" class="dropdown-item text-primary">All</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="font-weight-bold nav-link mx-2 text-primary" href="#" id="last-arrivals-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Offers
</a>
<div class="dropdown-menu border-0" aria-labelledby="last-arrivals-link">
<a href="/products/?category=data_offers" class="dropdown-item text-primary">Vintage Data</a>
<a href="/products/?category=report_offers" class="dropdown-item text-primary">Special Reports</a>
<a href="/products/?category=training_offers" class="dropdown-item text-primary">Classic Training</a>
<a href="/products/?category=software_offers" class="dropdown-item text-primary">Software Previous Versions</a>
<a href="/products/?category=data_offers,report_offers,training_offers,software_offers" class="dropdown-item text-primary">All</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
<div id="footer-body-separator" class="row text-center text-white bg-danger">
<div class="col-12 col-md-8 order-2 order-md-1 bg-danger">
<!-- Use of marquee tag, https://www.w3schools.in/html-tutorial/marquee-tag/, accessed on March 16th, 2022, at 2:45.
Equivalent of marquee tag for HTML5, https://stackoverflow.com/questions/53632338/what-is-the-equivalent-of-marquee-tag-in-html5;
accessed on March 16th, 2022, at 3:20. -->
<div class="col-12 bg-danger my-0 holder">
<div class="my-auto last-news">
<div class="row" id="banner-div">
<div class="col-4">
<h5>Discount of 20% for orders over $500!</h5>
</div>
<div class="col-4">
<h5>Our deliveries include insurance</h5>
</div>
<div class="col-4">
<h5>Download data and cancel delivery costs!</h5>
</div>
</div>
</div>
</div>
</div>
<div id="log-in-status-banner" class="d-none d-md-inline col-md-4 order-1 order-md-2 bg-danger my-0">
<div class="col-12 bg-danger my-0 holder">
<p class="text-center text-md-right"><strong>Logged in as admin</strong></p>
</div>
</div>
</div>
</header>
<div class="container header-container">
<div class="row">
<div class="col"></div>
</div>
</div>
<!-- Page background -->
<div class="overlay"></div>
<div class="container mb-2 dark-blue-font">
<div class="row">
<div class="col">
<!-- Page Title -->
<h2 class="mt-4 mb-4 dark-blue-font">Checkout</h2>
<hr>
</div>
</div>
<!-- Order Summary -->
<div class="row">
<div class="col-12 col-lg-6 order-lg-last mb-5">
<p class="text-muted">Order Summary (1)</p>
<div class="row">
<div class="col-7 offset-2">
<p class="mb-1 mt-0 small text-muted">Item</p>
</div>
<div class="col-3 text-right">
<p class="mb-1 mt-0 small text-muted">Subtotal</p>
</div>
</div>
<div class="row">
<div class="col-2 mb-1 dark-blue-font">
<a href="/products/121">
<img class="w-100" src="/media/magnetometry_for_Canada.png" alt="Image for ">
</a>
</div>
<div class="col-7">
<p class="my-0"><strong>Canada Magnetometry</strong></p>
<p class="my-0 small">Resolution: HIGH</p>
<p class="my-0 small text-muted">Qty: 1</p>
</div>
<div class="col-3 text-right dark-blue-font">
<p class="my-0 small text-muted">$11.82</p>
</div>
</div>
<hr class="my-0">
<div class="row text-dark text-right">
<div class="col-7 offset-2 dark-blue-font">
<p class="my-0">Order Total:</p>
<p class="my-0">Delivery:</p>
<p class="my-0">Discount:</p>
<p class="my-0"><strong>Grand Total:</strong></p>
</div>
<div class="col-3 dark-blue-font">
<p class="my-0">$11.82</p>
<p class="my-0">$0.00</p>
<p class="my-0 text-danger">- $0.00</p>
<p class="my-0"><strong>$11.82</strong></p>
</div>
</div>
</div>
<div class="col-12 col-lg-6 bottom-marging-for-large-screens">
<p class="text-muted">Please complete your order below</p>
<form action="/checkout/" method="POST" id="payment-form">
<input type="hidden" name="csrfmiddlewaretoken" value="5IRAFreui89WJOZ2cKFOE0fBsbx9hX9UiztbKvZM9fgz4sTBAQ6TQeo6oBoGqC7Y">
<fieldset class="rounded px-3 mb-5 dark-blue-font">
<legend class="fieldset-label dark-blue-font px-2 w-auto">Details</legend>
<div id="div_id_full_name" class="form-group">
<label for="id_full_name" class=" requiredField">
Full Name<span class="asteriskField">*</span>
</label>
<div>
<input type="text" name="full_name" maxlength="50" autofocus placeholder="Full Name *" class="stripe-style-input textinput textInput form-control" required id="id_full_name">
</div>
</div>
<div id="div_id_email" class="form-group">
<label for="id_email" class=" requiredField">
Email Address<span class="asteriskField">*</span>
</label>
<div>
<input type="email" name="email" value="[email protected]" maxlength="254" placeholder="Email Address *" class="stripe-style-input emailinput form-control" required id="id_email">
</div>
</div>
</fieldset>
<fieldset class="rounded px-3 mb-5 dark-blue-font">
<legend class="fieldset-label dark-blue-font px-2 w-auto">Delivery</legend>
<div id="div_id_phone_number" class="form-group">
<label for="id_phone_number" class=" requiredField">
Phone Number<span class="asteriskField">*</span>
</label>
<div>
<input type="text" name="phone_number" value="1234" maxlength="20" placeholder="Phone Number *" class="stripe-style-input textinput textInput form-control" required id="id_phone_number">
</div>
</div>
<div id="div_id_street_address1" class="form-group">
<label for="id_street_address1" class=" requiredField">
Street Address 1<span class="asteriskField">*</span>
</label>
<div>
<input type="text" name="street_address1" value="Streetname Bvd." maxlength="80" placeholder="Street Address 1 *" class="stripe-style-input textinput textInput form-control" required id="id_street_address1">
</div>
</div>
<div id="div_id_street_address2" class="form-group">
<label for="id_street_address2" class="">
Street address2
</label>
<div>
<input type="text" name="street_address2" value="Street 2" maxlength="80" placeholder="Street Address 2" class="stripe-style-input textinput textInput form-control" id="id_street_address2">
</div>
</div>
<div id="div_id_town_or_city" class="form-group">
<label for="id_town_or_city" class=" requiredField">
Town or City<span class="asteriskField">*</span>
</label>
<div>
<input type="text" name="town_or_city" value="Littletown" maxlength="40" placeholder="Town or City *" class="stripe-style-input textinput textInput form-control" required id="id_town_or_city">
</div>
</div>
<div id="div_id_county" class="form-group">
<label for="id_county" class="">
County
</label>
<div>
<input type="text" name="county" value="Cuntyname" maxlength="80" placeholder="County" class="stripe-style-input textinput textInput form-control" id="id_county">
</div>
</div>
<div id="div_id_postcode" class="form-group">
<label for="id_postcode" class="">
Postcode
</label>
<div>
<input type="text" name="postcode" value="1234" maxlength="20" placeholder="Postal Code" class="stripe-style-input textinput textInput form-control" id="id_postcode">
</div>
</div>
<div id="div_id_country" class="form-group">
<label for="id_country" class=" requiredField">
Country<span class="asteriskField">*</span>
</label>
<div>
<select name="country" class="stripe-style-input lazyselect form-control" required id="id_country">
<option value="">Country</option>
<option value="AF">Afghanistan</option>
<option value="AX">Åland Islands</option>
<option value="AL">Albania</option>
<option value="DZ">Algeria</option>
<option value="AS">American Samoa</option>
<option value="AD">Andorra</option>
<option value="AO">Angola</option>
<option value="AI">Anguilla</option>
<option value="AQ">Antarctica</option>
<option value="AG">Antigua and Barbuda</option>
<option value="AR">Argentina</option>
<option value="AM">Armenia</option>
<option value="AW">Aruba</option>
<option value="AU">Australia</option>
<option value="AT" selected>Austria</option>
<option value="AZ">Azerbaijan</option>
<option value="BS">Bahamas</option>
<option value="BH">Bahrain</option>
<option value="BD">Bangladesh</option>
<option value="BB">Barbados</option>
<option value="BY">Belarus</option>
<option value="BE">Belgium</option>
<option value="BZ">Belize</option>
<option value="BJ">Benin</option>
<option value="BM">Bermuda</option>
<option value="BT">Bhutan</option>
<option value="BO">Bolivia</option>
<option value="BQ">Bonaire, Sint Eustatius and Saba</option>
<option value="BA">Bosnia and Herzegovina</option>
<option value="BW">Botswana</option>
<option value="BV">Bouvet Island</option>
<option value="BR">Brazil</option>
<option value="IO">British Indian Ocean Territory</option>
<option value="BN">Brunei</option>
<option value="BG">Bulgaria</option>
<option value="BF">Burkina Faso</option>
<option value="BI">Burundi</option>
<option value="CV">Cabo Verde</option>
<option value="KH">Cambodia</option>
<option value="CM">Cameroon</option>
<option value="CA">Canada</option>
<option value="KY">Cayman Islands</option>
<option value="CF">Central African Republic</option>
<option value="TD">Chad</option>
<option value="CL">Chile</option>
<option value="CN">China</option>
<option value="CX">Christmas Island</option>
<option value="CC">Cocos (Keeling) Islands</option>
<option value="CO">Colombia</option>
<option value="KM">Comoros</option>
<option value="CG">Congo</option>
<option value="CD">Congo (the Democratic Republic of the)</option>
<option value="CK">Cook Islands</option>
<option value="CR">Costa Rica</option>
<option value="CI">Côte d'Ivoire</option>
<option value="HR">Croatia</option>
<option value="CU">Cuba</option>
<option value="CW">Curaçao</option>
<option value="CY">Cyprus</option>
<option value="CZ">Czechia</option>
<option value="DK">Denmark</option>
<option value="DJ">Djibouti</option>
<option value="DM">Dominica</option>
<option value="DO">Dominican Republic</option>
<option value="EC">Ecuador</option>
<option value="EG">Egypt</option>
<option value="SV">El Salvador</option>
<option value="GQ">Equatorial Guinea</option>
<option value="ER">Eritrea</option>
<option value="EE">Estonia</option>
<option value="SZ">Eswatini</option>
<option value="ET">Ethiopia</option>
<option value="FK">Falkland Islands (Malvinas)</option>
<option value="FO">Faroe Islands</option>
<option value="FJ">Fiji</option>
<option value="FI">Finland</option>
<option value="FR">France</option>
<option value="GF">French Guiana</option>
<option value="PF">French Polynesia</option>
<option value="TF">French Southern Territories</option>
<option value="GA">Gabon</option>
<option value="GM">Gambia</option>
<option value="GE">Georgia</option>
<option value="DE">Germany</option>
<option value="GH">Ghana</option>
<option value="GI">Gibraltar</option>
<option value="GR">Greece</option>
<option value="GL">Greenland</option>
<option value="GD">Grenada</option>
<option value="GP">Guadeloupe</option>
<option value="GU">Guam</option>
<option value="GT">Guatemala</option>
<option value="GG">Guernsey</option>
<option value="GN">Guinea</option>
<option value="GW">Guinea-Bissau</option>
<option value="GY">Guyana</option>
<option value="HT">Haiti</option>
<option value="HM">Heard Island and McDonald Islands</option>
<option value="VA">Holy See</option>
<option value="HN">Honduras</option>
<option value="HK">Hong Kong</option>
<option value="HU">Hungary</option>
<option value="IS">Iceland</option>
<option value="IN">India</option>
<option value="ID">Indonesia</option>
<option value="IR">Iran</option>
<option value="IQ">Iraq</option>
<option value="IE">Ireland</option>