-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.html
More file actions
1338 lines (923 loc) · 96.3 KB
/
Copy pathregistration.html
File metadata and controls
1338 lines (923 loc) · 96.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>WCCHSC | Registration</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: TheEvent - v4.9.1
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center justify-content-center">
<div class="container-fluid row">
<div id="logo" class="col-4 d-flex align-items-center justify-content-center">
<!-- Uncomment below if you prefer to use a text logo -->
<h1><a href="/index.html">WCCHSC</a></h1>
</div>
<div class="navbar-container col-8 d-flex justify-content-end ps-sm-0">
<nav id="navbar" class="navbar order-last order-lg-0 ">
<ul>
<li><a class="nav-link" href="/index.html">Home</a></li>
<li><a class="nav-link active" href="/registration.html">Registration</a></li>
<li><a class="nav-link" href="/info_&_faq.html">Info & FAQ</a></li>
<li><a class="nav-link" href="/vendors_&_exhibitors.html">Vendors & Exhibitors</a></li>
<li><a class="nav-link" href="/usedcurriiculum.html">Used Curriculum</a></li>
<li><button class="signupBtn" onclick="window.location.href='/registration.html'">Sign Up</button></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero2" class="bg-image">
<div class="hero-container container-fluid" data-aos="zoom-in" data-aos-delay="100">
<h1 class="mb-4 pb-0">March 12-14, 2026</h1>
</div>
</section>
<!-- End Hero Section -->
<!-- ======= Register Section ======= -->
<section id="register" class="section-layout section-with-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Conference Registration</h2>
<p>Our team will contact you via provided contact email regarding payment information</p>
<p><strong>Your registration is only confirmed upon receipt of payment. Please make payment within 24 hours of registration.</strong></p>
<p><strong>Our e-transfer address is: wcchscreg@gmail.com</strong></p>
<p><strong>***Early bird registration deadline is Feb. 20, 2026***</strong></p>
</div>
<div class="row d-flex justify-content-center align-item">
<div class="col-lg-6 col-xl-5" data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0 w-100 ">
<div class="card-body px-0">
<h5 class="card-title text-muted text-upprcase text-center">PARTICIPANT</h5>
<hr>
<h6>
<br><br>
</h6>
<hr>
<div class="text-center register-overlay">
<button type="button" class="btn rounded-2 fw-bold py-3" data-bs-toggle="modal" data-toggle="modal" data-target="#exampleModalLong">REGISTER</button>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-5" data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0">
<div class="card-body px-0">
<h5 class="card-title text-muted text-upprcase text-center">PARTICIPANT requesting ACCOMMODATION</h5>
<hr>
<h6 class="text-muted text-upprcase text-center">Accommodation requires pre-approval.<br>Please Call 780-467-8410</h6>
<hr>
<div class="text-center register-overlay">
<button type="button" class="btn fw-bold py-3 rounded-2" data-bs-toggle="modal" data-toggle="modal" data-target="#exampleModalLong1">REGISTER</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Register Section -->
<!-- REGISTRATION form modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static">
<div class="modal-dialog" role="document" style="min-width: 80%">
<div class="modal-content" id="modal-content1">
<div class="modal-header px-lg-5 mx-lg-2">
<h5 class="modal-title fw-bold" id="exampleModalLongTitle">PARTICIPANT</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="resetRegForm();">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form id="registrationForm" name="mailinfo" method="post" class="p-lg-5">
<div class="form-floating mb-3">
<input type="number" id="No._of_participants" placeholder="No. of participants" name="No_of_participants" class="form-control">
<label for="No._of_participants" class="form-label">No. of participants</label>
</div>
<!-- Add customer details button-->
<div class="text-center mt-5 " id="addBtnLayout">
<button type="button" class="addCustomer fw-bold p-3 fs-5" onclick="customer_no();">NEXT</button>
</div>
<!-- hidden participant details-->
<div id="addcustomer" class="hide mt-5">
<h5 class="fw-bold mt-5 ms-2">Participants :</h5>
<div id="partDetail" class="d-flex flex-column">
</div>
<div class="form-floating mb-3">
<!-- Basic details -->
<h5 class="fw-bold mt-5 ms-2">Basic Details</h5>
<div class="form-floating mt-3 ms-2 input-container">
<input type="email" id="email" placeholder="Contact Email" class="form-control" name="email">
<label for="email" class="form-label">Contact Email</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon1" aria-hidden="true"></i>
</div>
<div class="form-floating mb-4 input-container">
<input type="tel" id="contactno" placeholder="Contact no." class="form-control" name="contactno" maxlength="10">
<label for="contactno" class="form-label">Contact no.</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon3" aria-hidden="true"></i>
</div>
<div class="form-floating mb-5 mt-3 ms-2 input-container">
<input type="text" id="city" placeholder="City/Township/County" class="form-control" name="city">
<label for="city" class="form-label">City/Township/County</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon2" aria-hidden="true"></i>
</div>
<!-- Registration -->
<h5 class="fw-bold mt-5 ms-2">Registration</h5>
<div class="mt-3">
<div id="fridayFood0" class="row d-flex justify-content-center align-items-center">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h4>Single Adult</h4>
<p>$120.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('basic','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="tbasic11" min="0" name="single1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('basic','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 px-0 my-2 rounded-3" style="background-color: #F4F4F4;">
<h4>Married couple</h4>
<p>$160.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('tadd','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="cadd1" min="0" name="married1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('tadd','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h4>Youth</h4>
<p>$50.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('radd','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="cyadd1" min="0" name="youth1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total1('radd','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Meals -->
<h5 class="fw-bold mt-5 ms-2">Meals</h5>
<div class="form-check form-check-inline ms-2 mb-4 ms-2">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1" onclick="showmeals();">
<label class="form-check-label" for="inlineRadio1">Yes</label>
</div>
<div class="form-check form-check-inline ms-2">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2" onclick="hidemeals();" checked>
<label class="form-check-label" for="inlineRadio2">No</label>
</div>
<div id="meals" class="hide">
<div class="container mt-3 px-4">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="fridaySwitch" onclick="showFridayMeal();">
<label class="form-check-label" for="flexSwitchCheckDefault"><h4>Friday</h4></label>
</div>
<div id="fridayFood" class="row hide">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Breakfast</h3>
<p>$14.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','breakfast','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_b" min="0" name="friBkft1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','breakfast','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 my-2 rounded-3" style="background-color: #F4F4F4;">
<h3>Lunch</h3>
<p>$21.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','lunch','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_l" min="0" name="friLnh1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','lunch','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Supper</h3>
<p>$22.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','dinner','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_d" min="0" name="friDnr1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals('friday','dinner','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<div class="container my-3 px-4">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="saturdaySwitch" onclick="showSaturdayMeal();">
<label class="form-check-label" for="flexSwitchCheckDefault"><h4>Saturday</h4></label>
</div>
<div id="saturdayFood" class="row hide">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Breakfast</h3>
<p>$14.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals('saturday','breakfast','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="sat_b" min="0" name="satBkft1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals('saturday','breakfast','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 my-2 rounded-3" style="background-color: #F4F4F4;">
<h3>Lunch</h3>
<p>$21.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals('saturday','lunch','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="sat_l" min="0" name="satLnh1" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals('saturday','lunch','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<div class="well">
<textarea class="form-control" id="foodNote1" name="foodNote1" placeholder="Special instruction" rows="5"></textarea>
<span class="pull-right label label-default count_message" id="count_message3"></span>
<br>
</div>
</div>
<!-- Total calculation -->
<hr class="bg-danger border-2 border-top border-danger mt-5 pt-0" />
<div class="pt-3 px-3">
<div class="row total">
<h3 class="fw-bold col-6 mb-0 align-middle">Total</h3>
<input type="text" id="gtotal" name="gtotal" class="gtotaln fw-bold col-6 text-end border-0 pb-4" readonly>
</div>
</div>
<div id="formBtnLayout" class="d-none">
<button id="close1" type="button" class="btn btn-secondary" data-dismiss="modal" onclick="resetRegForm();">Close</button>
<button id="form1" type="submit" class="btn btn-primary" value="Send" name="send">Confirm</button>
</div>
</div>
</div>
</form>
<!-- Error container -->
<div id="errorContainer" class="errorContainer">
<div class="errorHeader mx-1">
<h5 class="fw-bold mb-3 mt-1 ">Information missing</h5>
</div>
<div id="errorText" class="errorText mx-1">
</div>
<div class="d-flex justify-content-end mt-3 mb-2 me-1">
<button id="errorBtn" type="button" class="btn btn-primary ">Go Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End REGISTRATION Section -->
<!-- REGISTRATION + ACCOMMODATION form modal -->
<div class="modal fade" id="exampleModalLong1" tabindex="-1" style="padding-right: 0px;" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static">
<div class="modal-dialog" role="document" style="min-width: 80%">
<div class="modal-content" id="modal-content2">
<div class="modal-header px-lg-5 mx-lg-2">
<h5 class="modal-title fw-bold" id="exampleModalLongTitle">PARTICIPANT + ACCOMMODATION</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" onclick="resetRegAccForm();">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form id="registrationAccForm" name="mailinfo" method="post" class="p-lg-5">
<div class="form-floating mb-3">
<input type="number" id="No._of_participants1" placeholder="No. of participants" class="form-control" name="No_of_participants1">
<label for="No._of_participants" class="form-label">No. of participants</label>
</div>
<!-- Add customer details button-->
<div class="text-center mt-5 " id="addBtnLayout1">
<button type="button" class="addCustomer fw-bold p-3 fs-5" onclick="customer_no1();">NEXT</button>
</div>
<!-- hidden participant details-->
<div id="addcustomer1" class="hide mt-5">
<h5 class="fw-bold mt-5 ms-2">Participants :</h5>
<div id="partDetail1" class="d-flex flex-column">
</div>
<div class="form-floating mb-3">
<!-- Basic details -->
<h5 class="fw-bold mt-5 ms-2">Basic Details</h5>
<div class="form-floating mt-3 ms-2 input-container">
<input type="email" id="email2" placeholder="Contact Email" class="form-control" name="email2">
<label for="email" class="form-label">Contact Email</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon4" aria-hidden="true"></i>
</div>
<div class="form-floating mb-4 input-container">
<input type="tel" id="contactno2" placeholder="Contact no." class="form-control" name="contactno2" maxlength="10">
<label for="contactno" class="form-label">Contact no.</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon6" aria-hidden="true"></i>
</div>
<div class="form-floating mb-5 mt-3 ms-2 input-container">
<input type="text" id="city2" placeholder="City/Township/County" class="form-control" name="city2">
<label for="city" class="form-label">City/Township/County</label>
<i class="fa fa-exclamation-circle error-icon" id="error-icon5" aria-hidden="true"></i>
</div>
<!-- Registration-->
<h5 class="fw-bold mt-5 ms-2">Registration</h5>
<div class="mt-3">
<div id="fridayFood" class="row d-flex justify-content-center align-items-center">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h4>Single Adult</h4>
<p>$120.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total('basic','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="tbasic1" min="0" name="single" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total('basic','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 px-0 my-2 rounded-3" style="background-color: #F4F4F4;">
<h4>Married couple</h4>
<p>$160.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total('tadd','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="cadd" min="0" name="married" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total('tadd','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h4>Youth</h4>
<p>$50.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="counter_total('radd','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="cyadd" min="0" name="youth" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="counter_total('radd','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Accommodation -->
<h5 class="fw-bold mt-5 ms-2">Accommodation</h5>
<section id="accommodationContainer" class="section-layout bg-white pt-2 pb-0">
<div class="container py-0" data-aos="fade-up">
<div class="section-header mb-0">
<p>Single (remote bathroom) $70.00/night <br>
Double (with bathroom) $100.00/night <br>
(Double room preference given to married couples) <br>
Extra person $10/night <br> <br>
</p>
<h4 class="accText1 text-center">For Pre-Approval Please Call 780-467-8410</h4>
<h3 class="accText2 text-danger">Please do not call Providence Centre</h3>
</div>
</div>
</section>
<div class="pt-3 ps-3 pe-0">
<div class="accomodation row">
<h4 class="col-lg-6 col-md-6 my-0 d-flex align-items-center">Pre-approved accomodation cost</h4>
<div class="col-lg-6 col-md-6 input-container">
<input type="number" id="accTotal" placeholder="$0.00" class="accTotal form-control" step="any" onfocusout=" partMeals_total1()" name="accTotal">
<i class="fa fa-exclamation-circle error-icon2" id="error-icon5" aria-hidden="true"></i>
</div>
</div>
</div>
<!-- Meals -->
<h5 class="fw-bold mt-5 ms-2">Meals</h5>
<div class="form-check form-check-inline ms-2 mb-4 ms-2">
<input class="form-check-input" type="radio" name="inlineRadioOptions1" id="inlineRadio11" value="option1" onclick="showmeals1();">
<label class="form-check-label" for="inlineRadio11">Yes</label>
</div>
<div class="form-check form-check-inline ms-2">
<input class="form-check-input" type="radio" name="inlineRadioOptions1" id="inlineRadio21" value="option2" onclick="hidemeals1();" checked>
<label class="form-check-label" for="inlineRadio21">No</label>
</div>
<div id="meals1" class="hide">
<div class="container mt-3 px-4">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="fridaySwitch1" onclick="showFridayMeal1();">
<label class="form-check-label" for="flexSwitchCheckDefault"><h4>Friday</h4></label>
</div>
<div id="fridayFood1" class="row hide">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Breakfast</h3>
<p>$14.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','breakfast','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_b1" min="0" name="friBkft" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','breakfast','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 my-2 rounded-3" style="background-color: #F4F4F4;">
<h3>Lunch</h3>
<p>$21.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','lunch','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_l1" min="0" name="friLnh" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','lunch','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Supper</h3>
<p>$22.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','dinner','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="fri_d1" min="0" name="friDnr" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('friday','dinner','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<div class="container my-3 px-4">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="saturdaySwitch1" onclick="showSaturdayMeal1();">
<label class="form-check-label" for="flexSwitchCheckDefault"><h4>Saturday</h4></label>
</div>
<div id="saturdayFood1" class="row hide">
<div class="col-lg-3 text-center mx-lg-5 my-2 py-5 rounded-3" style="background-color: #F4F4F4;">
<h3>Breakfast</h3>
<p>$14.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('saturday','breakfast','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="sat_b1" min="0" name="satBkft" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('saturday','breakfast','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
<div class="col-lg-3 text-center py-5 my-2 rounded-3" style="background-color: #F4F4F4;">
<h3>Lunch</h3>
<p>$21.00</p>
<div class="d-flex flex-row justify-content-center">
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('saturday','lunch','minus')">
<i class="fas fa-minus"></i>
</button>
<input id="sat_l1" min="0" name="satLnh" value="0" type="number"
class="form-control form-control-sm text-center bg-white" style="width: 50px;" readonly/>
<button type="button" class="btn btn-link px-2"
onclick="partMeals1('saturday','lunch','plus')">
<i class="fas fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<div class="well">
<textarea class="form-control" id="foodNote2" name="foodNote2" placeholder="Special instruction" rows="5"></textarea>
<span class="pull-right label label-default count_message" id="count_message4"></span>
<br>
</div>
</div>
<!-- Total calculation -->
<hr class="bg-danger border-2 border-top border-danger mt-5 pt-0" />
<div class="pt-3 px-3">
<div class="row total">
<h3 class="fw-bold col-6 mb-0 align-middle">Total</h3>
<input type="text" id="cgtotal1" name="cgtotal1" class="gtotaln fw-bold col-6 text-end border-0 pb-4" readonly>
</div>
</div>
<div id="formBtnLayout1" class="d-none">
<button type="button" class="btn btn-secondary" data-dismiss="modal" onclick="resetRegAccForm();">Close</button>
<button id="form2" type="submit" class="btn btn-primary">Confirm</button>
</div>
</div>
</div>
</form>
<!-- Error container -->
<div id="errorContainer2" class="errorContainer">
<div class="errorHeader mx-1">
<h5 class="fw-bold mb-3 mt-1 ">Information missing</h5>
</div>
<div id="errorText2" class="errorText mx-1">
</div>
<div class="d-flex justify-content-end mt-3 mb-2 me-1">
<button id="errorBtn2" type="button" class="btn btn-primary ">Go Back</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End REGISTRATION + ACCOMMODATION Section -->
<!-- ======= Vendor Accomodation Section ======= -->
<section id="" class="section-layout bg-white pt-5 pb-0">
<div class="container py-0" data-aos="fade-up">
<div class="section-header mb-0 pb-0">
<h3 class="mt-0 mb-3">ACCOMMODATIONS</h3>
<p>Single (remote bathroom) $70.00/night <br>
Double (with bathroom) $100.00/night <br>
(Double room preference given to married couples) <br>
Extra person $10/night <br> <br>
</p>
<h4 class="text-center">For Pre-Approval Please Call 780-467-8410</h4>
<h4 class="text-danger mb-0">Please do not call Providence Centre</h4>
</div>
</div>
</section>
<!-- End Vendor Accomodation Section -->
<!-- ======= Contact Us Section ======= -->
<section id="subscribe">
<div class="w-100">
<div class="section-header mb-3">
<h2>Have Questions?</h2>
<p class="fs-4">If our FAQ doesnt have an answer, we certainly will!</p>
</div>
<div class="row justify-content-center">
<div class="col-lg-6 col-md-10 d-flex justify-content-center contactus">
<button type="submit" class="btn fw-bold py-3 rounded-2" onclick="usefulLink('contactus');">Info & FAQ</button>
</div>
</div>
</div>
</section><!-- End Contact Us Section -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container-lg">
<div class="row">
<div class="col-lg-3 col-md-3 footer-info pe-xl-5">
<h1 class="pe-xl-5"><a href="https://wcchsc.alvitrtechnology.com/" class="pe-xl-5">WCCHSC</a></h1>
</div>
<div class="col-lg-3 col-md-3 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a onclick="usefulLink('reg_container');">Vendor Registration</a></li>
<li><i class="bi bi-chevron-right"></i> <a onclick="usefulLink('venue');">Location</a></li>
<li><i class="bi bi-chevron-right"></i> <a onclick="usefulLink('schedule');">Schedule</a></li>
<li><i class="bi bi-chevron-right"></i> <a data-bs-toggle="modal" data-toggle="modal" data-target="#termsModal">Terms of use</a></li>
<li><i class="bi bi-chevron-right"></i> <a data-bs-toggle="modal" data-toggle="modal" data-target="#privacyModal">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-3 footer-links">
</div>
<div class="col-lg-3 col-md-6 footer-contact">
<h4>Contact Us</h4>
<div class="social-links">
<a href="https://twitter.com/wcchsconf" class="twitter" target="_blank"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/WCCHSC/" class="facebook" target="_blank"><i class="bi bi-facebook"></i></a>
<a href="mailto:wcchscinfo@gmail.com" class="email" target="_blank"><i class="bi bi-mailbox"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
Designed by Intra-Play Inc.
</div>
</div>
</footer>
<!-- End Footer -->
<!-- Terms of use Modal -->
<div class="modal fade" id="termsModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static">
<div class="modal-dialog" role="document" style="min-width: 80%">
<div class="modal-content" id="modal-content3">
<div class="modal-header px-lg-5 mx-lg-2">
<h5 class="modal-title fw-bold" id="exampleModalLongTitle">Terms of use</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body p-lg-5 mx-lg-3" style="text-align: justify;">
<span class="fw-bold">Last Updated on November 20, 2023</span><br><br>
In these Terms, “we”, “us” and “our” refer to <span class="fw-bold">WCCHSC</span> and the terms “you” or “your” refer to any individual user of our Site.<br><br>
<span class="fw-bold">NOTICE:</span> It is your responsibility to carefully read these Terms of Use (“Terms”) before using our Site or purchasing or accessing any of our services, products, content, webinars, or resources (collectively, “Services”). These Terms govern and define your use of the Site and Services and are legally binding on you. <br><br>
<span class="h5 fw-bold">USE OF OUR SITE AND SERVICES</span><br><br>
When you accessed our Site, you were given reasonable notice that these Terms existed. By accessing and continuing to use our Site or by clicking to accept or agree to these Terms when the option is made available to you, you agree to be legally bound and abide by these Terms and our Privacy Policy whether or not you have read them. If you do not agree with these Terms or our Privacy Policy, you must not use or access our Site or Services. <br><br>
You must be at least 16 years old in order to use our Site or the necessary age in your country of residence otherwise this is a violation of use. We reserve the right to terminate your access if it is discovered you are a minor. <br><br>
While we aim to keep this Site as up-to-date as possible, we cannot guarantee that all content on our Site is entirely accurate, complete, or up to date. We reserve the right at any time to modify or discontinue, in whole or in part, any Services offered or change the prices of Services without notice. We are not liable to you or any third-party for any modification, price change, suspension or discontinuation of any Services. <br><br>
If you wish to have any of your personal information and/or access to our Site removed, you may email us at wcchsc2018@gmail.com and we will make reasonable efforts to do so. More information about how we collect, process and store your personal information can be found in our Privacy Policy.<br><br>
<span class="h5 fw-bold">FEES</span><br><br>
Fees are as listed on our Site and in CDN dollars. We reserve the right to change our Fees at any time and without notice. <br><br>
<span class="h5 fw-bold">INTELLECTUAL PROPERTY AND OWNERSHIP OF RIGHTS</span><br><br>
<div class="px-lg-3">
<span class="h6 fw-bold">• Intellectual Property Rights</span><br><br>
All content, resources, materials, images, text, designs, graphics, page layouts, icons, videos, logos, taglines, trademarks (whether common law or registered), copyright, and service marks (“Intellectual Property”) are owned by us, unless attributed otherwise. All content on the Site is proprietary to us and you may not modify, whether in whole or in part of our Intellectual Property as this is a violation of federal law. <br><br>
If you wish to use, publish or refer to any of our Intellectual Property, you must do so by first requesting permission by emailing us at wcchsc2018@gmail.com. Permission is not granted until you receive confirmation in writing from us and any terms we outline for use, which may include you providing obvious credit to us and including a back link to the webpage on our Site or to the social media platform where our Intellectual Property was originally posted. In no event do you obtain any rights or ownership in our Intellectual Property, or may you claim that it is your own content or creation.<br><br>
Any and all Services or other materials that you access or are provided with by us are under the sole ownership or licensed use of wcchsc2018@gmail.com including all Intellectual Property. You specifically acknowledge and agree that you do not obtain any ownership interest or other rights to the materials and all copyrights remain with us. As a condition of your use, you may not, under any circumstances reproduce, copy, modify, sell or use such materials except as it was originally intended when it was provided by us to you, including sharing with any third-party, including members of your business or team. If it is determined that you have breached this limited license, this will be considered infringement of our Intellectual Property rights and we specifically reserve the right to seek damages, an injunction, or any such other available legal remedy in our sole discretion.<br><br>
As part of your limited, non-transferable, non-exclusive royalty-free license you may (i) access the materials for your personal use only; (ii) download or print any of the materials provided to you for your personal use or personal use in your business only; and (iii) use any of our Intellectual Property with our prior written consent so long as all materials show “© WCCHSC” as the source of the materials and marking any of our federally registered trademarks with “®” or our common law trademarks with “™”. If you wish to use, publish any of our content, resources or materials you must first write to us wcchsc2018@gmail.com and request our consent.<br><br>
<span class="h6 fw-bold">• Violations and Indemnity</span><br><br>
We take violations and infringement of our Intellectual Property rights seriously. We expressly reserve the right to take whatever legal steps necessary to protect and defend our Intellectual Property, and violators will be prosecuted to the fullest extent permissible by law. You agree to indemnify, defend and hold us harmless for any and all damages, costs and expenses, including legal fees, arising from your misuse of our Intellectual Property and our enforcement of our rights.<br><br>
</div>
<span class="h5 fw-bold">MEDIA RELEASE</span><br><br>
By using our Site, you grant us a commercial license to use any image(s), including any containing your likeness, that you submit to us whether voluntarily or by default, such as your profile picture on any social media platforms, for our future business use.<br><br>
<span class="h5 fw-bold">SECURITY</span><br><br>
<div class="px-lg-3">
<span class="h6 fw-bold">• Security</span><br><br>
If at any time you are required to create a username and password to access any Services, it is your responsibility to protect your username and password from theft or any other means of unauthorized use that would violate these Terms. If you become aware that your password has been compromised or your account has been breached, it is your responsibility to notify us immediately by sending an email to wcchsc2018@gmail.com.<br><br>
<span class="h6 fw-bold">• Use of Third-Party Applications</span><br><br>
In order to run our Site and provide our Services, we use a number of third-party applications, such as for processing payment, delivering electronic newsletters, booking systems. For more information as to how your personal information is collected, stored and processed, please refer to our Privacy Policy. You understand it is your responsibility to review the terms of use for any such third-party applications. If you do not agree with the terms of use for any third-party application used by our Site, please discontinue use of our Site and Services immediately.<br><br>
<span class="h6 fw-bold">• Confidentiality</span><br><br>
You acknowledge that we have no duty of confidentiality to you, unless otherwise explicitly stated, such as in a subsequent client agreement, or as may be mandated by law or fiduciary duty.<br><br>
<span class="h6 fw-bold">• Your Communication with Us</span><br><br>
By submitting a comment, photo, video or other materials to our Site or any other platform owned or maintained by us, you grant us a non-revocable, commercial license to re-publish your submission, in whole or in part, unless you expressly state that we may not do so. You acknowledge that we have no duty of privacy or confidentiality to you by accessing our Site. <br><br>