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
|
<!DOCTYPE html> <html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="author" content="SemiColonWeb" />
<!-- Stylesheets ============================================= --> <link href="http://fonts.googleapis.com/css?family=Lato:300,400,400italic,600,700|Raleway:300,400,500,600,700|Crete+Round:400italic" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="../css/bootstrap.css" type="text/css" /> <link rel="stylesheet" href="../css/style.css" type="text/css" /> <link rel="stylesheet" href="../css/swiper.css" type="text/css" /> <link rel="stylesheet" href="../css/dark.css" type="text/css" /> <link rel="stylesheet" href="../css/font-icons.css" type="text/css" /> <link rel="stylesheet" href="../css/animate.css" type="text/css" /> <link rel="stylesheet" href="../css/magnific-popup.css" type="text/css" /> <link rel="stylesheet" href="../css/custom.css" type="text/css" /> <link rel="stylesheet" href="../css/Grid-Layout.css"> <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<link rel="stylesheet" href="../css/responsive.css" type="text/css" /> <link rel="stylesheet" href="../css/responsive-custom.css" type="text/css" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Date & Time Picker CSS --> <link rel="stylesheet" href="../css/datepicker.css" type="text/css" /> <link rel="stylesheet" href="../css/timepicker.css" type="text/css" /> <link rel="stylesheet" href="../css/daterangepicker.css" type="text/css" />
<script src="https://use.fontawesome.com/6fac2730d4.js"></script>
<link rel="stylesheet" href="../css/signature-pad.css">
<!--[if lt IE 9]> <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script> <![endif]-->
<!-- Document Title ============================================= --> <title>CANA</title>
</head>
<body class="stretched side-push-panel">
<?php include 'include/side-nav.php';?>
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php include 'include/header.php';?> <!-- #header end -->
<!-- Content ============================================= --> <section id="content"> <div class="subpage-Header" style="background-image: url('../img/elements/subpage-headerbg-5.jpg');"> <div class="subp-Header-Title"> <h1>Join Our Team</h1> <h3>Have a positive impact On people's lives</h3> </div> <div class="subp-Header-location"> <img src="../img/elements/home-white.png"> <a href="#" class="Subpage-location-link"> Home </a> <img src="../img/elements/right-arrow.png"> <a href="#" class="Subpage-location-link"> About Us </a> <img src="../img/elements/right-arrow.png"> <a href="#" class="Subpage-location-link"> Join Us </a> <img src="../img/elements/right-arrow.png"> <a href="#" class="Subpage-location-active"> Job Application Form </a> </div> </div>
<div class="subpage"> <div class="container"> <div class="ApplicationForm"> <hr class="HeadingBorder"> <h3>Job Application Form</h3> <form> <div class="tabs tabs-bb clearfix">
<ul class="tab-nav clearfix nav nav-tabs FormTabs"> <li class="active"><a href="#tabs-F1" data-toggle="tab">1. Personal Information</i></a> </li> <li><a href="#tabs-F2" data-toggle="tab">2. Education Background</a> </li> <li><a href="#tabs-F3" data-toggle="tab">3. Employment Experience</a> </li> <li><a href="#tabs-F4" data-toggle="tab">4. Awards & Skills</a> </li> <li><a href="#tabs-F5" data-toggle="tab">5. Other Details</a> </li> <li><a href="#tabs-F6" data-toggle="tab">6. Policy Statements</a> </li> </ul>
<div class="tab-container"> <div class="tab-content clearfix active" id="tabs-F1"> <div class="FormFill"> <div class="formTitle"> PART I: PERSONAL INFORMATION </div> <div class="formStep"> 1/6 </div> <div class="Form-3"> <span>Name In English</span> <input type="text" placeholder="First Name"> </div> <div class="Form-3"> <span>Name In English</span> <input type="text" placeholder="Last Name"> </div> <div class="Form-3"> <span>Name In Chinese</span> <input type="text" placeholder="中文姓名"> </div> <div class="Form-4 input-daterange travel-date-group"> <span>Date of Birth</span> <input type="text" value="" class="sm-form-control tleft default" placeholder="MM/DD/YYYY"> </div> <div class="Form-4"> <span>Gender</span> <div class="RadioChoice"> <input type="radio" id="GenderMale" name="Gender" value="all"> <label for="GenderMale">Male</label> <input type="radio" id="GenderFemale" name="Gender" value="all"> <label for="GenderFemale">Female</label> </div> </div> <div class="Form-4"> <span>Nationality</span> <select> <option disabled selected="selected">Nationality</option> <option>Hong Kong</option> </select> </div> <div class="Form-4"> <span>Ethnicity</span> <input type="text" placeholder="Ethnicity"> </div> <div class="Form-1"> <span>Are you a permanent resident of the Hong Kong Special Administrative Region?</span> <div class="RadioChoice"> <input type="radio" id="permanentYes" name="permanent" value="all"> <label for="permanentYes">Yes</label> <input type="radio" id="permanentNo" name="permanent" value="all"> <label for="permanentNo">No</label> </div> </div> <div class="Form-1" id="HKID" style="display:none;"> <span>HKID</span> <input type="text" placeholder="HKID"> </div> <div class="Form-1" id="needVisa" style="display:none;"> <span>Do you need a working visa to work in Hong Kong?</span> <div class="RadioChoice"> <input type="radio" id="visaYes" name="RadioVisa" value="all"> <label for="visaYes">Yes</label> <input type="radio" id="visaNo" name="RadioVisa" value="all"> <label for="visaNo">No</label> </div> </div> <div class="Form-1" style="display:none;" id="visaExpiry"> <span>State the type of visa held and the expiry date</span> <input type="text" placeholder="State the type of visa held and the expiry date"> </div> <div class="Form-2"> <span>Mobile number</span> <input type="text" placeholder="Mobile number"> </div> <div class="Form-2"> <span>Email</span> <input type="text" placeholder="Email"> </div> <div class="Form-1"> <span>Address</span> <input type="text" placeholder="Address"> </div> <div class="Form-2"> <span>What position are you applying for?</span> <input type="text" placeholder="What position are you applying for?"> </div> <div class="Form-2"> <span>Job Type</span> <div class="RadioChoice"> <input type="radio" id="JobTypeFull" name="Jobtype" value="all"> <label for="JobTypeFull">Full Time</label> <input type="radio" id="JobTypePT" name="Jobtype" value="all"> <label for="JobTypePT">Part Time</label> </div> </div> <div class="Form-1"> <span>How did you find out this vacancy?</span> <select id="Vacancy-Box"> <option disabled selected="selected">How did you find out this vacancy?</option> <option>JobsDB</option> <option>cpJobs.com</option> <option>CANA website</option> <option>Jijis</option> <option value="UniWeb">University website</option> <option value="ReferredByEmployee">Referred by CANA's Employee</option> <option value="ReferredByOther">Others, please state specifically</option> </select> </div> <div class="Form-1" style="display:none;" id="vacancyUni"> <span>State the name of University</span> <input type="text" placeholder="State the name of University"> </div>
<div class="Form-1" style="display:none;" id="vacancyEmployee"> <span>State the name of the employee</span> <input type="text" placeholder="State the name of the employee"> </div>
<div class="Form-1" style="display:none;" id="vacancyOther"> <span>Referred by others</span> <input type="text" placeholder="Others, please state specifically"> </div>
<div class="Form-2"> <span>Availability</span> <select id="Availability-Box"> <option disabled selected="selected">Availability</option> <option>Immediate</option> <option>One month notification</option> <option>Two months notification</option> <option>Three months notification</option> <option value="AvailabilityOther">Others, please specify</option> </select> </div> <div class="Form-2" id="AvailabilityOtherInput" style="display:none;"> <span>Availability - Others</span> <input type="text" placeholder="Others, please specify"> </div> <div class="Form-2"> <span>Expected salary</span> <input type="text" placeholder="Expected salary"> </div> <div class="clear"></div> <div class="FormNavControl"> <div class="NextForm"> <a class="btnNext">Next</a> </div> </div> </div> </div>
<div class="tab-content clearfix" id="tabs-F2"> <div class="FormFill"> <div class="formTitle"> PART II: EDUCATION BACKGROUND </div> <div class="formStep"> 2/6 </div> <div class="BlockHeading">Tertiary Education</div> <div class="BlockContainer"> <div class="Block" data-duplicate="University"> <h4>University 1</h4> <div class="Form-1"> <div class="RadioChoice BlockChoice"> <input type="radio" id="Uni1" name="Uni" value="all"> <label for="Uni1">Diploma</label> <input type="radio" id="Uni2" name="Uni" value="all"> <label for="Uni2">Associate Degree</label> <input type="radio" id="Uni3" name="Uni" value="all"> <label for="Uni3">Bachelor Degree</label> <input type="radio" id="Uni4" name="Uni" value="all"> <label for="Uni4">Master Degree</label> <input type="radio" id="Uni5" name="Uni" value="all"> <label for="Uni5">PhD/Doctor</label> <input type="radio" id="Uni6" name="Uni" value="all"> <label for="Uni6">Professional Qualification</label> </div> <div class="FillSchool"> <input type="text" placeholder="Other"> </div> </div> <div class="Form-2"> <span>Name of Major</span> <input type="text" placeholder="Name of Major"> </div> <div class="Form-2"> <span>From (MM/YY) TO (MM/YY)</span> <input type="text" placeholder="From (MM/YY) TO (MM/YY)"> </div> <div class="Form-1"> <span>Name of Institute</span> <input type="text" placeholder="Name of Institute"> </div> <div class="Form-2"> <span>Honors attained</span> <select> <option disabled selected="selected">Honors attained</option> <option>First Honors</option> <option>Second Upper Honors</option> <option>Second lower Honors</option> <option>Third Honors</option> <option>Not applicable</option> </select> </div> <div class="Form-2"> <span>GPA/Total GPA (If not applicable, please fill N/A)</span> <input type="text" placeholder="GPA/Total GPA (If not applicable, please fill N/A)"> </div> <div class="Form-1"> <span>Other description if any</span> <textarea></textarea> </div> <div class="Form-1"> If you have more than one university, please click on the “ Add University” button below. </div> <button data-duplicate-remove="University" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="University" type="button" id="AddBlockBTN">Add University</button> </div> </div> <div class="clear"></div>
<div class="BlockHeading">Secondary School</div> <div class="BlockContainer"> <div class="Block" data-duplicate="School"> <h4>Secondary School 1</h4>
<div class="Form-2"> <span>Name of School</span> <input type="text" placeholder="Name of School"> </div> <div class="Form-2"> <span>From (MM/YY) TO (MM/YY)</span> <input type="text" placeholder="From (MM/YY) TO (MM/YY)"> </div> <div class="Form-2"> <span>Public Exam Taken</span> <div class="RadioChoice"> <input type="radio" id="ExamTakenYes" name="ExamTaken" value="all"> <label for="ExamTakenYes">Yes</label> <input type="radio" id="ExamTakenNo" name="ExamTaken" value="all"> <label for="ExamTakenNo">No</label> </div> </div> <div id="ExamTaken-Yes" style="display:none;"> <div class="Form-2"> <span>Year of taken</span> <input type="text" placeholder="Year of taken"> </div> <div class="clear"></div> <h4>Syllabuses and Grade</h4> <div class="Form-1"> <span>Syllabuses</span> <div class="RadioChoice BlockChoice"> <input type="radio" id="Sceondary1" name="SecSchool" value="all"> <label for="Sceondary1">HKAL</label> <input type="radio" id="Sceondary2" name="SecSchool" value="all"> <label for="Sceondary2">HKCEE</label> <input type="radio" id="Sceondary3" name="SecSchool" value="all"> <label for="Sceondary3">HKDSE</label> <input type="radio" id="Sceondary4" name="SecSchool" value="all"> <label for="Sceondary4">IB</label> <input type="radio" id="Sceondary5" name="SecSchool" value="all"> <label for="Sceondary5">GCE(A-LEVEL)</label> <input type="radio" id="Sceondary6" name="SecSchool" value="all"> <label for="Sceondary6">GCSE</label> <input type="radio" id="Sceondary7" name="SecSchool" value="all"> <label for="Sceondary7">IGCSE</label> <input type="radio" id="Sceondary8" name="SecSchool" value="all"> <label for="Sceondary8">SAT</label> <input type="radio" id="Sceondary9" name="SecSchool" value="all"> <label for="Sceondary9">ACT</label> <input type="radio" id="Sceondary10" name="SecSchool" value="all"> <label for="Sceondary10">AP</label> </div> <div class="FillSchool"> <input type="text" placeholder="Other"> </div> </div> <div class="Form-1"> <span>Results of Each Subject taken</span> <textarea></textarea> </div> </div> <div class="Form-1"> If you have more than one secondary school, please click on the “ Add secondary school” button below. </div>
<button data-duplicate-remove="School" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="School" type="button" id="AddBlockBTN">Add Secondary School</button> </div> </div> <div class="FormNavControl"> <div class="PreviousForm"> <a class="btnPrevious">Previous</a> </div> <div class="NextForm"> <a class="btnNext">Next</a> </div> </div>
</div> </div>
<div class="tab-content clearfix" id="tabs-F3"> <div class="FormFill"> <div class="formTitle"> PART III: EMPLOYMENT EXPERIENCE </div> <div class="formStep"> 3/6 </div> <div class="Form-1"> <span>Do you have any employment experience?</span> <div class="RadioChoice"> <input type="radio" id="ExperienceYes" name="Experience" value="all"> <label for="ExperienceYes">Yes</label> <input type="radio" id="ExperienceNo" name="Experience" value="all"> <label for="ExperienceNo">No</label> </div> </div> <div class="Form-1"> Please list in chronological order starting with your most recent position. If you are applying for a teaching position, please state your teaching experience. </div> <div class="BlockContainer" id="EmploymentDiv" style="display:none;"> <div class="Block" data-duplicate="Employment"> <h4>Employment 1</h4>
<div class="Form-2"> <span>Position Held</span> <input type="text" placeholder="Position Held"> </div> <div class="Form-2"> <span>Job Type</span> <div class="RadioChoice"> <input type="radio" id="EmploymentFullTime" name="EmploymentJobType" value="all"> <label for="EmploymentFullTime">Full Time</label> <input type="radio" id="EmploymentPartTime" name="EmploymentJobType" value="all"> <label for="EmploymentPartTime">Part Time</label> </div> </div> <div class="Form-2"> <span>From (MM/YY) TO (MM/YY)</span> <input type="text" placeholder="From (MM/YY) TO (MM/YY)"> </div> <div class="Form-2"> <span>Name of Organization</span> <input type="text" placeholder="Name of Organization"> </div> <div class="Form-2"> <span>Last Salary</span> <input type="text" placeholder="Last Salary"> </div> <div class="Form-2"> <span>Reasons for Leaving</span> <input type="text" placeholder="Reasons for Leaving"> </div> <div class="Form-1"> If you have teaching experience please state which curriculum you taught, for how many years and the grades your students achieved. </div> <div class="Form-1"> <span>Other description of Job nature</span> <textarea></textarea> </div> <div class="Form-1"> If you have more working expeirence, please click the “ Add Employment” button below. </div>
<button data-duplicate-remove="Employment" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="Employment" type="button" id="AddBlockBTN">Add Employment</button> </div> </div> <div class="FormNavControl"> <div class="PreviousForm"> <a class="btnPrevious">Previous</a> </div> <div class="NextForm"> <a class="btnNext">Next</a> </div> </div>
</div> </div>
<div class="tab-content clearfix" id="tabs-F4"> <div class="FormFill"> <div class="formTitle"> PART IV: AWARDS & SKILLS </div> <div class="formStep"> 4/6 </div> <div class="BlockHeading">Language Proficiency</div> <div class="BlockContainer"> <div class="Block" data-duplicate="Language"> <h4>Language 1</h4> <div class="Form-2"> <span>Name of language</span> <input type="text" placeholder="Name of language"> </div> <div class="Form-2"> <span>Level of Fluency</span> <div class="RadioChoice"> <input type="radio" id="Fluency1" name="Fluency" value="all"> <label for="Fluency1">Native</label> <input type="radio" id="Fluency2" name="Fluency" value="all"> <label for="Fluency2">Fluent</label> <input type="radio" id="Fluency3" name="Fluency" value="all"> <label for="Fluency3">Beginner</label> </div>
</div> <button data-duplicate-remove="Language" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="Language" type="button" id="AddBlockBTN">Add Language</button> </div> </div>
<div class="BlockHeading">Award</div> <div class="BlockContainer"> <div class="Block" data-duplicate="Award"> <h4>Award 1</h4> <div class="Form-2"> <span>Name of the award</span> <input type="text" placeholder="Name of the award"> </div> <div class="Form-2"> <span>Year of award</span> <input type="text" placeholder="Year of award"> </div> <button data-duplicate-remove="Award" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="Award" type="button" id="AddBlockBTN">Add Award</button> </div> </div>
<div class="BlockHeading">Skills</div> <div class="BlockContainer"> <div class="ClearTxt"> Please feel free to describe any special skills and achievements that you feel may be relevant. <textarea></textarea> </div> </div> <div class="FormNavControl"> <div class="PreviousForm"> <a class="btnPrevious">Previous</a> </div> <div class="NextForm"> <a class="btnNext">Next</a> </div> </div> </div> </div>
<div class="tab-content clearfix" id="tabs-F5"> <div class="FormFill"> <div class="formTitle"> PART V: OTHER DETAILS </div> <div class="formStep"> 5/6 </div> <div class="BlockHeading">Character Reference</div> <div class="BlockContainer"> <div class="Block" data-duplicate="Reference"> <h4>Reference 1</h4>
<div class="Form-2"> <span>Name of Referee</span> <input type="text" placeholder="Name of Referee"> </div> <div class="Form-2"> <span>Contact Tel. No.</span> <input type="text" placeholder="Contact Tel. No."> </div> <div class="Form-2"> <span>Name of employer</span> <input type="text" placeholder="Name of employer"> </div> <div class="Form-2"> <span>Position</span> <input type="text" placeholder="Position"> </div> <div class="Form-2"> <span>Relationship</span> <input type="text" placeholder="Relationship"> </div> <div class="Form-2"> <span>Years Known</span> <input type="text" placeholder="Years Known"> </div>
<button data-duplicate-remove="Reference" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="Reference" type="button" id="AddBlockBTN">Add Reference</button> </div> </div> <div class="clear"></div>
<div class="BlockHeading">Other Details</div> <div class="OtherDetail"> <span>Have you ever been discharged from employment because your work or conduct was not satisfactory?</span> <div class="RadioChoice"> <input type="radio" id="OtherDetail-1-Yes" name="OtherDetail-1" value="all"> <label for="OtherDetail-1-Yes">Yes</label> <input type="radio" id="OtherDetail-1-No" name="OtherDetail-1" value="all"> <label for="OtherDetail-1-No">No</label> </div> </div> <div class="Form-1" style="display:none" id="Pariticulars-1"> <span>Given Pariticulars</span> <input type="text" placeholder="Given Pariticulars"> </div> <div class="OtherDetail"> <span>Have you ever been arrested and convicted of any offence(s) in Hong Kong or elsewhere?</span> <div class="RadioChoice"> <input type="radio" id="OtherDetail-2-Yes" name="OtherDetail-2" value="all"> <label for="OtherDetail-2-Yes">Yes</label> <input type="radio" id="OtherDetail-2-No" name="OtherDetail-2" value="all"> <label for="OtherDetail-2-No">No</label> </div> </div> <div class="Form-1" style="display:none" id="Pariticulars-2"> <span>Given Pariticulars</span> <input type="text" placeholder="Given Pariticulars"> </div> <div class="OtherDetail"> <span>Have you applied for a position within our company before?</span> <div class="RadioChoice"> <input type="radio" id="OtherDetail-3-Yes" name="OtherDetail-3" value="all"> <label for="OtherDetail-3-Yes">Yes</label> <input type="radio" id="OtherDetail-3-No" name="OtherDetail-3" value="all"> <label for="OtherDetail-3-No">No</label> </div> </div> <div class="Form-1" style="display:none" id="Pariticulars-3"> <span>Given Pariticulars</span> <input type="text" placeholder="Given Pariticulars"> </div> <div class="OtherDetail"> <span>Do you have a relative or friend working for CANA Academy Limited?</span> <div class="RadioChoice"> <input type="radio" id="OtherDetail-4-Yes" name="OtherDetail-4" value="all"> <label for="OtherDetail-4-Yes">Yes</label> <input type="radio" id="OtherDetail-4-No" name="OtherDetail-4" value="all"> <label for="OtherDetail-4-No">No</label> </div> </div> <div class="Form-1" style="display:none" id="Pariticulars-4"> <span>Given Pariticulars</span> <input type="text" placeholder="Given Pariticulars"> </div> <div class="clear"></div>
<div class="BlockHeading">Attachment</div> <div class="BlockContainer"> <div class="Block" data-duplicate="Attachment"> <h4>Copy of Certificate or Reference 1</h4> <input type="file" name="file-1[]" id="file-1" class="inputfile inputfile-1" data-multiple-caption="{count} files selected" multiple /> <label for="file-1"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" viewBox="0 0 20 17"> <path d="M10 0l-5.2 4.9h3.3v5.1h3.8v-5.1h3.3l-5.2-4.9zm9.3 11.5l-3.2-2.1h-2l3.4 2.6h-3.5c-.1 0-.2.1-.2.1l-.8 2.3h-6l-.8-2.2c-.1-.1-.1-.2-.2-.2h-3.6l3.4-2.6h-2l-3.2 2.1c-.4.3-.7 1-.6 1.5l.6 3.1c.1.5.7.9 1.2.9h16.3c.6 0 1.1-.4 1.3-.9l.6-3.1c.1-.5-.2-1.2-.7-1.5z" /> </svg> <span>Choose a file…</span> </label>
<button data-duplicate-remove="Attachment" type="button" id="RemoveBlockBTN">Remove</button> </div> <div class="AddBlock"> <button data-duplicate-add="Attachment" type="button" id="AddBlockBTN">Add Attachment</button> </div> <div class="ClearTxt"> Self-Introduction and Your Teaching style/Methods if you apply for teaching positions <textarea></textarea> </div> </div>
<div class="FormNavControl"> <div class="PreviousForm"> <a class="btnPrevious">Previous</a> </div> <div class="NextForm"> <a class="btnNext">Next</a> </div> </div> </div> </div> <div class="tab-content clearfix" id="tabs-F6"> <div class="FormFill"> <div class="formTitle"> PART VI: POLICY STATEMENTS </div> <div class="formStep"> 6/6 </div> <div class="FormFill"> <div class="Form-1"> <div class="ClearTxt"> <h4>A. Personal Information Collection Statement</h4> <h5>1. Purpose</h5> <p>The personal data collected by CANA Academy Limited is for consideration of your recruitment application. Data of successful applicants will be kept as part of CANA Academy Limited employee records.</p> <h5>2. Data User</h5> <p>Only authorized personnel can access and use the data provided.</p> <h5>3. Retention of Data </h5> <p>Unless otherwise consented by applicants, unsuccessful applications will be destroyed upon completion of the recruitment exercise.</p> <h5>4. Data Correction</h5> <p>Applicants who wish to request access to, and correction of, their personal data may write to the Human Resources Department of the CANA Academy Limited.</p> </div> </div> <div class="Form-1"> <div class="ClearTxt"> <h4>B. Equal Opportunity Statement</h4> <p>CANA Academy Limited is an equal opportunity employer. We welcome applicants who meet the respective requirements of the job vacancy. All appointments are based on the candidates’ past working experience, competencies and qualifications regardless of their gender, age, race, disability, marital status, or family status.</p>
<div class="CreatePost-ClickTerms"> <input id="checkTerms-1" class="check-custom" name="check-group" type="checkbox"> <label for="checkTerms-1" class="check-custom-label"></label> I understand that if I wilfully give any false information or withhold any information, my application will not be further processed or I shall render myself liable to summary dismissal if I am appointed to the service of CANA Academy Limited. </div>
<h4>PART VII</h4> <h5>A. Statement of Data Collection from 3rd parties</h5> <p>CANA Academy Limited may write to your previous and present employers concerning any record or information relating to your employment if it decides to offer you the post. The employment offer is subject to satisfactory reference checks.</p> <p>This Statement is governed by the Personal Information Collection Policy of CANA Academy Limited.</p> <h5>B. Authorization of Data Collection</h5> <p>I hereby authorize and give my consent to my previous employer(s) and any education/professional institute(s) to release information concerning my employment/qualification record (including but not limited to my salaries & other incomes, performance, etc.), academic achievements and qualifications to CANA Academy Limited. I also authorize CANA Academy Limited to collect the captioned information from my previous employer(s) and any education/professional institute(s). I understand that this information will be treated in strict confidence and used for employment purposes only.</p> </div> </div> <div class="Form-3"> <span>Name:</span> <input type="text" placeholder="Name:"> </div> <div class="Form-3"> <span>HKID Card No.</span> <input type="text" placeholder="HKID Card No."> </div> <div class="Form-3 input-daterange travel-date-group"> <span>Date</span> <input type="text" value="" class="sm-form-control tleft default" placeholder="MM/DD/YYYY"> </div>
<div class="Form-1"> <span>Please Sign Above</span> <div id="signature-pad" class="m-signature-pad"> <div class="m-signature-pad--body"> <canvas></canvas> </div>
<button type="button" class="clearSignBTN" data-action="clear">Clear</button> </div> </div>
<div class="FormNavControl"> <div class="PreviousForm"> <a class="btnPrevious">Previous</a> </div> <div class="NextForm"> <input type="submit" value="Submit" class="formSubmit"> </div> </div> </div> </div> </div>
</div> </div>
</form>
</div> </div> </div>
</section> <!-- #content end -->
<!-- Contact Form & Map Overlay Section End -->
<!-- Footer ============================================= --> <?php include 'include/footer.php';?> <!-- #footer end -->
</div> <!-- #wrapper end -->
<!-- External JavaScripts ============================================= --> <script type="text/javascript" src="../js/jquery.js"></script> <script type="text/javascript" src="../js/plugins.js"></script>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js"></script> <script type="text/javascript" src="../js/script.js"></script> <script src="../js/Grid-Layout.js"></script>
<script src="../js/jquery.duplicate.js"></script>
<!-- Date & Time Picker JS --> <script type="text/javascript" src="../js/components/moment.js"></script> <script type="text/javascript" src="../js/datepicker.js"></script> <script type="text/javascript" src="../js/timepicker.js"></script>
<!-- Include Date Range Picker --> <script type="text/javascript" src="../js/daterangepicker.js"></script>
<script type="text/javascript"> $(function() { $('.travel-date-group .default').datepicker({ autoclose: true, startDate: "today", });
$('.travel-date-group .today').datepicker({ autoclose: true, startDate: "today", todayHighlight: true });
$('.travel-date-group .past-enabled').datepicker({ autoclose: true, }); $('.travel-date-group .format').datepicker({ autoclose: true, format: "dd-mm-yyyy", });
$('.travel-date-group .autoclose').datepicker();
$('.travel-date-group .disabled-week').datepicker({ autoclose: true, daysOfWeekDisabled: "0" });
$('.travel-date-group .highlighted-week').datepicker({ autoclose: true, daysOfWeekHighlighted: "0" });
$('.travel-date-group .mnth').datepicker({ autoclose: true, minViewMode: 1, format: "mm/yy" });
$('.travel-date-group .multidate').datepicker({ multidate: true, multidateSeparator: " , " });
$('.travel-date-group .input-daterange').datepicker({ autoclose: true });
$('.travel-date-group .inline-calendar').datepicker();
$('.datetimepicker').datetimepicker({ showClose: true });
$('.datetimepicker1').datetimepicker({ format: 'LT', showClose: true });
$('.datetimepicker2').datetimepicker({ inline: true, sideBySide: true });
});
$(function() { // .daterange1 $(".daterange1").daterangepicker({ "buttonClasses": "button button-rounded button-mini nomargin", "applyClass": "button-color", "cancelClass": "button-light" });
// .daterange2 $(".daterange2").daterangepicker({ "opens": "center", timePicker: true, timePickerIncrement: 30, locale: { format: 'MM/DD/YYYY h:mm A' }, "buttonClasses": "button button-rounded button-mini nomargin", "applyClass": "button-color", "cancelClass": "button-light" });
// .daterange3 $(".daterange3").daterangepicker({ singleDatePicker: true, showDropdowns: true }, function(start, end, label) { var years = moment().diff(start, 'years'); alert("You are " + years + " years old."); });
// reportrange function cb(start, end) { $(".reportrange span").html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY')); } cb(moment().subtract(29, 'days'), moment());
$(".reportrange").daterangepicker({ "buttonClasses": "button button-rounded button-mini nomargin", "applyClass": "button-color", "cancelClass": "button-light", ranges: { 'Today': [moment(), moment()], 'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')], 'Last 7 Days': [moment().subtract(6, 'days'), moment()], 'Last 30 Days': [moment().subtract(29, 'days'), moment()], 'This Month': [moment().startOf('month'), moment().endOf('month')], 'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')] } }, cb);
// .daterange4 $(".daterange4").daterangepicker({ autoUpdateInput: false, locale: { cancelLabel: 'Clear' }, "buttonClasses": "button button-rounded button-mini nomargin", "applyClass": "button-color", "cancelClass": "button-light" });
$(".daterange4").on('apply.daterangepicker', function(ev, picker) { $(this).val(picker.startDate.format('MM/DD/YYYY') + ' - ' + picker.endDate.format('MM/DD/YYYY')); });
$(".daterange4").on('cancel.daterangepicker', function(ev, picker) { $(this).val(''); });
}); </script>
<script type="text/javascript"> $('.btnNext').click(function(){ $('.nav-tabs > .active').next('li').find('a').trigger('click'); });
$('.btnPrevious').click(function(){ $('.nav-tabs > .active').prev('li').find('a').trigger('click'); });
</script>
<script src="../js/applicationform.js"></script>
<script src="../js/custom-file-input.js"></script>
<script src="../js/signature_pad.js"></script> <script src="../js/app.js"></script>
</body>
</html>
|