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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Job Preview</title> <!-- css --> <?php include 'inc/headlinks.php'; ?> <!-- js --> <?php include 'inc/link-js.php'; ?> </head>
<body>
<!-- header --> <?php include 'inc/header.php'; ?> <!-- end of header-->
<div class="grayBg p-4"> <div class="container"> <div class="row"> <div class="col-md-3"> Application for Job </div> <div class="col-md-9"> <p class="bold mb-2"> Accounting Clerk - Ocean Freight (5 days work, 14 months pay) </p> <p>Belt Collins International (HK) Limited</p> <p class="font09 mb-0"> <span class="mr-4 mobileBlock"><i class="fas fa-map-marker-alt"></i> Kowloon Bay</span> <span class="mr-4 mobileBlock"><i class="fas fa-dollar-sign"></i> Salary provided</span> <span class="mobileBlock"><i class="far fa-calendar-alt"></i> 14 Jul 2019</span> </p> </div> </div> </div>
</div>
<section class="wrapper">
<div class="container">
<div class="row"> <div class="col-md-3"> <p class="unbold h3">CV</p>
</div> <div class="col-md-9"> <div class="row">
<div class="col-md-6"> <div class="form-group err"> <div class="form-check form-check-inline mb-0"> <label class="form-check-label customRadio"> <p>Use my CV file</p> <a href="#" class="link">ABC_CV.docx</a> <p class="garyFont small mb-2"> Last uploaded on 26 Aug 2020 12:00PM</p> <input class="form-check-input hide" checked type="radio" name="cvUpload" value="yes"> <div> <label for="upload-file" class="link"><i class="fas fa-upload"></i> Choose browse file...</label> <input type="file" name="photo" class="upload-file" /> </div> <span class="checkmark"></span>
<a href="#" class="mr-2 purpleWord"> <i class="material-icons mtIcon">remove_circle_outline</i> Remove </a> </label>
</div> <p class="redWord validate mt-1 mb-0"> Please upload your cv. </p> </div>
</div>
<div class="col-md-6"> <div class="form-check form-check-inline">
<label class="form-check-label customRadio"> <p>I dont't have a CV file</p>
<input class="form-check-input hide" type="radio" name="cvUpload" value="no"> <span class="checkmark"></span> </label> </div> </div> </div>
</div> </div>
<hr> <div class="row"> <div class="col-md-3"> <p class="unbold h3 mb-4">Basic Information</p> </div> <div class="col-md-9">
<div class="row">
<div class="col-md-6"> <div class="form-group err"> <label for="firstName">First name</label> <input type="text" class="form-control" id="firstName" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div>
</div> <div class="col-md-6"> <div class="form-group err"> <label for="lastName">Last name</label> <input type="text" class="form-control" id="lastName" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> <div class="col-md-12">
<div class="form-group err"> <label for="email">Preferred email (for job application)</label> <input type="text" class="form-control" id="email" aria-describedby="emailHelp" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> <p class="redWord validate mt-1 mb-0">Please enter a valid email address. </p> </div> </div> <div class="col-md-12"> <div class="form-group err"> <label for="lastName">Preferred contact number</label> <input type="text" class="form-control" id="lastName" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter a valid phone number. </p> </div> </div>
<div class="col-md-12">
<div class="form-group err"> <label for="eventLocation">Living area</label> <div class="multiselectGroup multiselectToggleGroup eventLocationClass"> <select class="form-control" id="eventLocation" multiple="multiple">
<optgroup disabled label="--- Hong Kong Island ---"> </optgroup> <optgroup label="Central & Western Area"> <option value="eventLocation01a">Central & Western Area </option> <option value="eventLocation01">Admiralty </option> <option value="eventLocation02">Central </option> <option value="eventLocation03">Sai Wan </option> <option value="eventLocation04">Sai Ying Pun </option> <option value="eventLocation05">Sheung Wan </option> </optgroup> <optgroup label="Eastern Area"> <option value="eventLocation06a">Eastern Area </option> <option value="eventLocation06">Chai Wan </option> <option value="eventLocation07">North Point </option> <option value="eventLocation08">Quarry Bay </option> <option value="eventLocation09">Sai Wan Ho </option> <option value="eventLocation10">Shau Kei Wan </option>
<option value="eventLocation12">Siu Sai Wan </option> <option value="eventLocation13">Tai Koo </option> <option value="eventLocation14">Tin Hau </option> </optgroup> <optgroup label="Wan Chai Area"> <option value="eventLocation15a">Wan Chai Area </option> <option value="eventLocation15">Causeway Bay </option> <option value="eventLocation16">Wan Chai </option> </optgroup>
<optgroup label="Southern Area"> <option value="eventLocation17a">Southern Area </option> <option value="eventLocation17">Aberdeen </option> <option value="eventLocation18">Pok Fu Lam </option> </optgroup>
<optgroup disabled label="--- Kowloon ---"> </optgroup> <optgroup label="Kowloon City Area"> <option value="eventLocation19a">Kowloon City Area </option> <option value="eventLocation19">Hung Hom </option> <option value="eventLocation20">Kowloon City </option> <option value="eventLocation21">To Kwa Wan
</option>
</optgroup> <optgroup label="Kwun Tong Area"> <option value="eventLocation22a">Kwun Tong Area </option> <option value="eventLocation22">Kowloon Bay </option> <option value="eventLocation23">Kwun Tong </option> <option value="eventLocation24">Ngau Tau Kok </option> </optgroup> <optgroup label="Sham Shui Po Area"> <option value="eventLocation25a">Sham Shui Po Area </option> <option value="eventLocation25">Cheung Sha Wan </option> <option value="eventLocation26">Lai Chi Kok </option> <option value="eventLocation27">Sham Shui Po </option> </optgroup> <optgroup label="Wong Tai Sin Area"> <option value="eventLocation28">Wong Tai Sin Area </option> </optgroup>
<optgroup label="Yau Tsim Mong Area"> <option value="eventLocation29a">Yau Tsim Mong Area </option> <option value="eventLocation29">Mong Kok </option> <option value="eventLocation30">Tsim Sha Tsui </option> <option value="eventLocation31">Yau Ma Tei </option> </optgroup>
<optgroup disabled label="--- New Territories ---"> </optgroup>
<optgroup label="Kwai Tsing Area"> <option value="eventLocation32a">Kwai Tsing Area </option> <option value="eventLocation32">Kwai Fong
</option> <option value="eventLocation33">Kwai Hing
</option> <option value="eventLocation34">Tsing Yi
</option>
</optgroup> <optgroup label="Northern NT Area"> <option value="eventLocation35a">Northern NT Area </option> <option value="eventLocation35">Fanling
</option> <option value="eventLocation36">Sheung Shui
</option> </optgroup> <optgroup label="Sai Kung Area"> <option value="eventLocation37a">Sai Kung Area </option> <option value="eventLocation37">Sai Kung </option> <option value="eventLocation38">Tseung Kwan O </option>
</optgroup> <optgroup label="Sha Tin Area"> <option value="eventLocation39">Sha Tin Area </option> </optgroup> <optgroup label="Tai Po Area"> <option value="eventLocation40">Tai Po Area </option> </optgroup> <optgroup label="Tsuen Wan Area"> <option value="eventLocation41">Tsuen Wan Area </option> </optgroup>
<optgroup label="Tuen Mun Area"> <option value="eventLocation42">Tuen Mun Area </option> </optgroup>
<optgroup label="Yuen Long Area"> <option value="eventLocation43a">Yuen Long Area </option> <option value="eventLocation43">Tin Shui Wai </option> <option value="eventLocation44">Yuen Long </option>
</optgroup>
<optgroup disabled label="--- Outlying Islands ---"> </optgroup>
<optgroup label="Cheung Chau Area"> <option value="eventLocation45">Cheung Chau Area
</option> </optgroup>
<optgroup label="Lantau Island"> <option value="eventLocation46a">Lantau Island </option> <option value="eventLocation46">Airport Area
</option> <option value="eventLocation47">Tung Chung </option>
</optgroup>
<optgroup disabled label="--- Others ---"> </optgroup>
<optgroup label="Multiple Locations"> <option value="eventLocation48">Multiple Locations </option> </optgroup>
<optgroup label="Greater Bay Area"> <option value="eventLocation49">Greater Bay Area </option> </optgroup> <optgroup label="Macau"> <option value="eventLocation50">Macau </option> </optgroup> <optgroup label="Other China"> <option value="eventLocation51">Other China </option> </optgroup> <optgroup label="Oversea"> <option value="eventLocation51">Oversea </option> </optgroup>
</select> <a href="JavaScript:void(0);" class="eventLocationCloseSelectBtn selectCloseBtn"><i class="fas fa-times"></i></a>
<p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> </div>
<div class="col-md-12"> <div class="form-group err"> <label for="WorkPermit">Work permit</label> <div class="selectionSelecter"> <select class="form-control" id="WorkPermit"> <option value="" hidden></option>
<option value="Hong Kong permanent resident">Hong Kong permanent resident </option> <option value="Dependent visa">Dependent visa</option> <option value="Employment visa with current employer">Employment visa with current employer</option> <option value="Other work permit (QMAS, IANG, etc.)">Other work permit (QMAS, IANG, etc.)</option> <option value="No work permit for Hong Kong">No work permit for Hong Kong </option> </select> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div>
</div>
</div> </div> <hr> <div class="row"> <div class="col-md-3"> <p class="unbold h3">Latest Employment</p>
</div> <div class="col-md-9">
<div class="row"> <div class="col-md-12 editRowDetailItems"> <div class="form-group err"> <label for="WorkExperience1">How many years of work experience do you have?</label> <div class="selectionSelecter"> <select class="form-control exp" id="WorkExperience1"> <option value="" hidden></option>
</select> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> <div class="expInfo"> <div class="row"> <div class="col-md-6"> <div class="form-group err"> <label for="Employer" class="blackWord">Employer</label> <input type="text" class="form-control" id="Employer" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> <div class="col-md-6 mb-4 presentDate"> <div class="form-group err"> <label class="d-block mb-3">Current employer</label> <div class="form-check form-check-inline mb-0">
<label class="form-check-label customRadio"> Yes <input class="form-check-input" type="radio" name="CurrentEmployer" value="yes"> <span class="checkmark"></span> </label> </div> <div class="form-check form-check-inline ml-4 mb-0"> <label class="form-check-label customRadio"> No <input class="form-check-input" type="radio" name="CurrentEmployer" value="no"> <span class="checkmark"></span> </label> </div> <p class="redWord validate mt-1 mb-0"> Please select information. </p> </div> </div> <div class="col-md-6"> <div class="form-group err"> <label for="Jobtitle" class="blackWord">Job title</label> <input type="text" class="form-control" id="Jobtitle" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> <div class="col-md-6">
</div> <div class="col-md-6">
<div class="form-group err"> <label for="jobFunction">Job function</label> <div class="multiselectGroup multiselectToggleGroup jobFunctionClass"> <select class="form-control" id="jobFunction" multiple="multiple">
<optgroup label="Accountant"> <option value="1">Accountant </option> <option value="2">Accounting Clerk / Supervisor </option> <option value="3">Audit </option> <option value="4">Chief Accountant </option> <option value="5">Consulting </option> <option value="6">Credit Control </option> <option value="7">Finance / Accounting Manager </option> <option value="8">Financial Analys </option> <option value="9">Financial Controller </option> <option value="10">Taxation </option> <option value="11">Treasurer </option> <option value="12">Other Accounting </option> </optgroup>
<optgroup label="Administration / Operation Manager">
<option value="13">Administration / Operation Manager </option> <option value="14">Clerical / Admin Staff </option> <option value="15">Compensation & Benefits </option> <option value="16">HR Director / Manager </option> <option value="17">HR Supporting Staff </option> <option value="18">Personal / Executive Assistant </option> <option value="19">Receptionist </option> <option value="20">Recruitment / Executive Search </option> <option value="21">Secretary </option> <option value="22">Training & Development </option> <option value="23">Other Admin & HR </option> </optgroup>
<optgroup label="Banking / Finance">
<option value="24">Analyst </option> <option value="25">Asset Management </option> <option value="26">Corporate Banking </option> <option value="27">Corporate Finance </option> <option value="28">Credit Analysis / Approval </option> <option value="29">Credit Collection </option> <option value="30">Dealing & Trading </option> <option value="31">Equities / Capital Markets </option> <option value="32">Financial Services </option> <option value="33">Fund Management </option> <option value="34">Investment </option> <option value="35">Loan </option> <option value="36">Mortgage </option> <option value="37">Order Processing & Operation / Settlement </option> <option value="38">Private Banking </option> <option value="39">Project Finance </option> <option value="40">Risk Management </option> <option value="41">Retail Banking </option> <option value="42">Treasury </option> <option value="43">Wealth Management </option> <option value="44">Other Banking / Finance </option> </optgroup>
<optgroup label="Beauty Care / Health">
<option value="45">Athletics / Fitness / Sports & Recreation </option> <option value="46">Beautician </option> <option value="47">Nutritionist </option> <option value="48">Therapist </option> <option value="49">Other Beauty Care / Health </option> </optgroup>
<optgroup label="Building & Construction">
<option value="50">Architectural Services </option> <option value="51">Building / Construction / QS </option> <option value="52">Civil / Structural </option> <option value="53">Therapist </option> <option value="54">Other Building & Construction </option>
</optgroup>
<optgroup label="Fashion">
<option value="55">Fashion </option> <option value="56">Graphics </option> <option value="57">Industrial / Product </option> <option value="58">Interior </option> <option value="59">Multi-media </option> <option value="60">Visual Merchandising </option> <option value="61">Web Design </option> <option value="62">Other Design </option> </optgroup>
<optgroup label="E-commerce">
<option value="63">Business Development </option> <option value="64">Marketing - Brand / Product Management </option> <option value="65">Product Management / Business Analyst </option> <option value="66">Software Development </option> <option value="67">Supply Chain </option> <option value="68">Other E-commerce </option>
</optgroup>
<optgroup label="Education">
<option value="69">Lecturer / Professor </option> <option value="70">Librarian </option> <option value="71">Teacher </option> <option value="72">Tutor / Instructor </option> <option value="73">Other Education </option> </optgroup>
<optgroup label="Engineering">
<option value="74">Chemical </option> <option value="75">Draftsman </option> <option value="76">Electrical / Electronics </option> <option value="77">Engineering Project Management </option> <option value="78">Manufacturing & Production </option> <option value="79">Telecommunication / Wireless / Radi </option> <option value="80">Other Engineering </option> </optgroup>
<optgroup label="Hospitality / F & B">
<option value="81">Food & Beverage </option> <option value="82">Draftsman </option> <option value="83">Hospitality / Hotel Services </option> <option value="84">Integrated Resort / Casino </option> <option value="85">Tourism / Travel Agency </option> <option value="86">Other Hospitality / F&B </option> </optgroup>
<optgroup label="Information Technology (IT)">
<option value="87">Application Specialist - Network </option> <option value="88">Application Specialist - Software </option> <option value="89">Data Scientist </option> <option value="90">Database Administrator (DBA) </option> <option value="91">Hardware </option> <option value="92">IT - Webmaster / SEO </option> <option value="93">IT Auditing </option> <option value="94">IT Management </option> <option value="95">IT Project Management / Team Lead </option> <option value="96">Mobile / Wireless Communications </option> <option value="97">Network & System </option> <option value="98">Product Management / Business Analyst </option> <option value="99">Security </option> <option value="100">Software Development </option> <option value="101">Support </option> <option value="102">Technical / Functional Consulting </option> <option value="103">Technical Writing </option> <option value="104">Testing / QA </option> <option value="105">UI / UX Designer </option> <option value="106">Other Information Technology (IT) </option>
</optgroup>
<optgroup label="Insurance">
<option value="107">Actuarial </option> <option value="108">Claims Officer </option> <option value="109">Insurance Agent / Broker </option> <option value="110">Underwriter </option> <option value="111">Other Insurance </option> </optgroup>
<optgroup label="Management">
<option value="112">General Management </option> <option value="113">Management Trainee </option> <option value="114">Top Executives (CEO, CFO, CTO, GM, MD etc.) </option> </optgroup>
<optgroup label="Manufacturing">
<option value="115">Garment / Textile </option> <option value="116">General / Production Workers </option>
<option value="117">Jewelry </option> <option value="118">Manufacturing Management
</option> <option value="119">Printing
</option> <option value="120">Product Development / Management
</option> <option value="121">Production Planning / Control
</option> <option value="122">Quality Assurance, Control & Testing / ISO </option> <option value="123">Other Manufacturing </option> </optgroup>
<optgroup label="Marketing / Public Relations">
<option value="124">Digital Marketing </option> <option value="125">Management </option> <option value="126">Marketing - Brand / Product Management </option> <option value="127">Marketing - Direct Marketing </option> <option value="128">Marketing - General / Support </option> <option value="129">Marketing - Market Research </option> <option value="130">Marketing - Marketing Communication </option> <option value="131">Public Relations - Copy-writing </option> <option value="132">Public Relations - Event Management </option> <option value="133">Public Relations - General / Support </option> <option value="134">Other Marketing / Public Relations </option>
</optgroup>
<optgroup label="Media & Advertising">
<option value="135">Editorial / Journalism </option> <option value="136">Account Servicing </option> <option value="137">Broadcasting - TV / Radio </option> <option value="138">Creative / Design </option> <option value="139">Media Buying </option> <option value="140">Photography / Video </option> <option value="141">Print Media </option> <option value="142">Production </option> <option value="143">Strategic Planning </option> <option value="144">Others </option> </optgroup>
<optgroup label="Medical Services">
<option value="145">Doctor / Practitioner / Surgeon </option> <option value="146">Medical Services Technician </option> <option value="147">Nursing </option> <option value="148">Pharmaceutical </option> <option value="149">Specialist </option> <option value="150">Therapist </option> <option value="151">Other Medical Services </option> </optgroup>
<optgroup label="Merchandising & Purchasing">
<option value="152">Electronics </option> <option value="153">Fabrics </option> <option value="154">Footwear </option> <option value="155">Furniture </option> <option value="156">Handbag </option> <option value="157">Home Appliances </option> <option value="158">Procurement / Purchasing / Sourcing </option> <option value="159">PVC </option> <option value="160">Stationery </option> <option value="161">Stationery </option> <option value="162">Sweater </option> <option value="163">Textiles </option> <option value="164">Toy </option> <option value="165">Watch </option> <option value="166">Woven / Knit </option> <option value="167">Other Merchandising & Purchasing </option> </optgroup>
<optgroup label="Professional Services">
<option value="168a">Business Analysis / Data Analysis </option> <option value="169a">Business Consultancy </option> <option value="170a">Company Secretary </option> <option value="171a">Legal & Compliance </option> <option value="172a">Translation </option> </optgroup>
<optgroup label="Property / Real Estate">
<option value="168">Property Consultancy </option> <option value="169">Property Management </option> <option value="170">Other Property / Real Estate </option>
</optgroup>
<optgroup label="Public / Civil">
<option value="171">Civil Services </option> <option value="172">Counseling </option> <option value="173">Social Services - Community / Non-profit Organization </option> <option value="174">Utilities </option> <option value="175">Other Public / Civil </option> </optgroup>
<optgroup label="Sales, CS & Business Development">
<option value="176">Account Servicing </option> <option value="177">Business Development </option> <option value="178">Call Center </option> <option value="179">Channel / Distribution </option> <option value="180">Customer Service - Manager </option> <option value="181">Customer Service - Supervisor / Officer </option> <option value="182">Direct Sales </option> <option value="183">Retail Sales </option> <option value="184">Sales Administration </option> <option value="185">Sales - Real Estate </option> </option> <option value="186">Sales - Sales Management </option> <option value="187">Technical Sales / Sales Engineer </option> <option value="188">Tele-sales (Telemarketing) </option> <option value="189">Wholesale </option> <option value="190">Other Sales, CS & Business Development </option> </optgroup>
<optgroup label="Chemical">
<option value="191">Chemical </option> <option value="192">Energy / Natural Resources / Oil & Gas
</option> <option value="193">Environmental Science / Waste Management
</option> <option value="194">Food Science
</option> <option value="195">Laboratory
</option> <option value="196">Life Science
</option> <option value="197">Research & Development (R&D) </option> <option value="198">Other Sciences, Lab, R&D </option>
<option value="Transportation" class="group TransportationChildTitle"> Transportation & Logistics </option> <option value="199">Aerospace </option> <option value="200">Aviation Services </option> <option value="201">Documentary Credit / Bills Processing </option> <option value="202">Freight Forwarding </option> <option value="203">Fulfillment </option> <option value="204">Inventory / Warehousing </option> <option value="205">Maritime - General </option> <option value="206">Private Transportation </option> <option value="207">Public Transportation </option> <option value="208">Shipping </option> <option value="209">Supply Chain </option> <option value="210">Other Transportation & Logistics </option> </optgroup>
<optgroup label="Others">
<option value="211">Agriculture / Forestry / Fishing </option> <option value="212">Entertainment - Artists / Singers / Musicians </option> <option value="213">Security / Safety Control </option> <option value="214">Student / Fresh Graduate / No Experience </option> <option value="215">Technician </option> <option value="216">Trading </option> <option value="217">Others </option> </optgroup>
</select> <a href="JavaScript:void(0);" class="jobFunctionCloseSelectBtn selectCloseBtn"><i class="fas fa-times"></i></a> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> </div> <div class="col-md-6"> <div class="form-group err"> <label for="industry">Industry</label> <div class="selectionSelecter"> <select class="form-control" id="industry"> <option hidden></option> </select> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> <div class="col-md-6"> <div class="form-group err"> <label for="StartDateM" class="blackWord">Start date</label> <div class="d-flex"> <div class="selectionSelecter mr-2 fullWidth"> <select class="form-control month" id="StartDateM"> <option value="" hidden>Month</option>
</select> </div> <div class="selectionSelecter fullWidth"> <select class="form-control year" id="StartDateY"> <option value="" hidden>Year</option> </select> </div> <div class="presentWarp"> </div> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div>
<div class="col-md-6 endDateWrap"> <div class="form-group err endDate"> <label for="EndDateM" class="blackWord">End date</label> <div class="d-flex"> <div class="selectionSelecter mr-2 fullWidth"> <select class="form-control month" id="EndDateM"> <option value="" hidden>Month</option> </select> </div> <div class="selectionSelecter fullWidth"> <select class="form-control year" id="EndDateY"> <option value="" hidden>Year</option> </select> </div> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div>
<div class="col-md-12"> <div class="form-group"> <label for="JobDetails">Job details</label> <textarea class="form-control" id="JobDetails" rows="5"></textarea>
</div> </div>
</div> </div> <a href="#" class="purpleWord removeEmployer"> <i class="material-icons mtIcon">remove_circle_outline</i> Remove </a>
</div>
</div> <div class="addWrap addotherEmployer">
<a href="#" class="link"> <i class="material-icons mtIcon">add_circle_outline</i> Add another employer </a> </div>
</div> </div> <hr> <div class="row"> <div class="col-md-3"> <p class="unbold h3">Highest Education</p>
</div> <div class="col-md-9"> <div class="row"> <div class="col-md-12 editRowDetailItems"> <div class="form-group err"> <label for="Educationlevel1">What is your highest education?</label> <div class="selectionSelecter"> <select class="form-control" id="Educationlevel1"> <option value="" hidden></option> <option value="Postgraduate">Postgraduate</option> <option value="Degree">Degree</option> <option value="Non_Degree">Non-Degree Tertiary</option> <option value="Matriculated">Matriculated</option> <option value="School_Certificate">School Certificate</option> <option value="Form_3">Form 3</option> <option value="Primary_or_below">Primary or below</option> <option value="Not_specified">Not specified</option>
</select> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> <div class="expInfo"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="SchoolName" class="blackWord">School name</label> <input type="text" class="form-control" id="SchoolName" placeholder=""> <!-- <p class="redWord validate mt-1 mb-0"> Please enter this information. </p>--> </div> </div> <div class="col-md-6"> <div class="form-group err"> <label for="FieldOfStudy" class="blackWord">Field of study</label> <input type="text" class="form-control" id="FieldOfStudy" placeholder=""> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div> <div class="col-md-6"> <p>Graduation/completed</p> <div class="form-check form-check-inline mb-3">
<label class="form-check-label customRadio"> Yes <input class="form-check-input" checked type="radio" name="Graduation2" value="option1"> <span class="checkmark"></span> </label> </div> <div class="form-check form-check-inline mb-3"> <label class="form-check-label customRadio"> No <input class="form-check-input" type="radio" name="Graduation2" value="option2"> <span class="checkmark"></span> </label> </div> <div class="form-check form-check-inline mb-3"> <label class="form-check-label customRadio"> Still attending <input class="form-check-input" type="radio" name="Graduation2" value="option3"> <span class="checkmark"></span> </label> </div> </div> <div class="col-md-6"> <div class="form-group err"> <label for="GraduationYear" class="blackWord">Graduation year (or expected)</label> <div class="selectionSelecter"> <select class="form-control graYear" id="GraduationYear" required> <option value="" hidden> Year</option> </select> </div> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> </div>
</div> </div>
<!-- <a href="#" class="mr-2 purpleWord"> <i class="material-icons mtIcon">remove_circle_outline</i> Remove </a>-->
</div>
</div>
</div> </div> <hr>
<div class="row"> <div class="col-md-3"> <p class="unbold h3">Additional Information </p> <p class="garyLightFont mb-4">(optional)</p> </div> <div class="col-md-9"> <div class="row">
<div class="col-md-12 mb-4"> <p>Cover letter</p> <a href="#" class="link">ABC_CV.docx</a> <p class="garyFont small mb-2"> Last uploaded on 26 Aug 2020 12:00PM</p> <div> <label for="upload-file" class="link"><i class="fas fa-upload"></i> Choose browse file...</label> <input type="file" name="photo" class="upload-file" /> </div> <a href="#" class="mr-2 purpleWord"> <i class="material-icons mtIcon">remove_circle_outline</i> Remove </a>
<!-- <div class="form-check form-check-inline mb-4"> <label class="form-check-label customRadio"> <p>Cover letter</p> <a href="#" class="link">ABC_CV.docx</a> <p class="garyFont small mb-2"> Last uploaded on 26 Aug 2020 12:00PM</p> <input class="form-check-input hide" type="radio" name="coverUpload" value="option2"> <div> <label for="upload-file" class="link"><i class="fas fa-upload"></i> Choose browse file...</label> <input type="file" name="photo" class="upload-file" /> </div> <span class="checkmark"></span>
<a href="#" class="mr-2 purpleWord"> <i class="material-icons mtIcon">remove_circle_outline</i> Remove </a> </label>
</div>-->
</div> <!--<div class="col-md-6"> <div class="form-check form-check-inline mb-4">
<label class="form-check-label customRadio"> <p>Do not include cover letter</p>
<input class="form-check-input" checked type="radio" name="coverUpload" value="option1"> <span class="checkmark"></span> </label> </div> </div>--> <div class="col-md-12"> <div class="form-group"> <label for="ExpectedSalary">Expected salary</label> <div class="d-flex flex-md-row flex-column"> <div class="d-flex w-100"> <span class="mr-2 mt-2">HK$</span> <input type="text" class="form-control mr-m-4" id="ExpectedSalary" onkeyup="reformatText(this)" placeholder=""> </div> <div class="custom-control custom-checkbox d-inline-block mb-2 mt-2"> <input type="checkbox" class="custom-control-input" id="Negotiable"> <label class="custom-control-label" for="Negotiable">Negotiable</label> </div>
</div> </div> <div class="form-group"> <label for="Availability">Availability</label> <div class="selectionSelecter"> <select class="form-control salary" id="Availability" required> <option selected value="">Choose availability </option> <option value="1 week">1 week notice</option> <option value="2 week">2 weeks notice</option> <option value="1 month">1 month notice</option> <option value="2 month">2 months notice</option> <option value="Immediately available">Immediately available</option> </select> </div> </div> <div class="form-group mb-0"> <p class="mb-2">Message to employer</p>
<textarea class="form-control countText" placeholder="" id="Skills" rows="5" maxlength="300"></textarea> <div class="d-flex justify-content-end"> <label for="Skills" class="small garyFont mr-1">0</label> <span class="white-space m-0 garyFont small"> / 300</span> </div> </div>
</div> </div> </div> </div>
<hr> <div class="btnWrap text-center">
<button type="button" class="btn btn-primary mb-4" title="Save Draft and Buy Credits" onclick="location.href='apply_non_success.php';">Apply Now</button>
<p>By clicking "Apply Now" you acknowledge that your personal information and application will be made available to this employer and otherwise dealt with by us in accordance with our <a href="privacy.php" class="link">Privacy Policy</a>. Jobs Reader will not disclose your information to any other parties.</p> </div>
</div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_n.php'; ?> <!-- end of footer --> <!-- Modal --> <script type="text/javascript" src="../assets/js/ajax.js"></script> <script src="https://cdn.ckeditor.com/4.14.1/standard/ckeditor.js"></script> <script type="text/javascript" src="../assets/js/bootstrap-datepicker.js"></script> <script type="text/javascript" src="../assets/js/select2.js"></script> <!-- <script type="text/javascript" src="../assets/js/selectcheckbox.js"></script> --> <script type="text/javascript" src="../assets/js/bootstrap-select.js"></script> <!-- custom JS --> <script> function checkLocationSelectMax() { // Get selected options. var selectedOptions = $('#jobLocation option:selected'); var selectVal = selectedOptions.val();
if (selectedOptions.length >= 3) { // Disable all other checkboxes.
var nonSelectedOptions = $('#jobLocation option').filter(function() { return !$(this).is(':selected'); });
nonSelectedOptions.each(function() { var input = $('input[value="' + $(this).val() + '"]'); input.prop('disabled', true); input.parent().parent().addClass('disabled'); });
$('.jobLocationClass .multiselect-container').after("<p class=" + "multiselectWrongMessage" + ">Select maximum of 3 job locations only.</p>");
} else { // Enable all checkboxes.
$('.multiselectWrongMessage').remove();
{ $('#jobLocation option').each(function() {
var input = $('input[value="' + $(this).val() + '" ]');
input.prop('disabled', false); input.parent().parent().removeClass('disabled'); });
}
}
}
$(".eventLocationCloseSelectBtn").click(function() { $('.multiselectWrongMessage').remove(); var lastOpenSite = $(".eventLocationClass li").siblings().not('.multiselect-group'); lastOpenSite.addClass("hidden"); $(".eventLocationClass .multiselect-container li a").removeClass('disabled'); $("#eventLocation").multiselect('clearSelection'); $("#eventLocation").multiselect('refresh'); $(this).hide(); });
$(".jobFunctionCloseSelectBtn").click(function() { $('.multiselectWrongMessage').remove();
var lastOpenSite = $(".jobFunctionClass li").siblings().not('.multiselect-group'); lastOpenSite.addClass("hidden"); $(".jobFunctionClass .multiselect-container li a").removeClass('disabled'); $("#jobFunction").multiselect('clearSelection'); $("#jobFunction").multiselect('refresh');
$(this).hide(); });
$(".jobLocationCloseSelectBtn").click(function() {
$('.multiselectWrongMessage').remove(); var lastOpenSite = $(".jobLocationClass li.child").removeClass('show'); $(".jobLocationClass .multiselect-container li a").removeClass('disabled'); $("#jobLocation").multiselect('clearSelection'); $("#jobLocation").multiselect('refresh');
$(this).hide(); });
$("[id*=Educationlevel]").each(function() { $(this).change(function() {
if ($(this).val() == "Not_specified") { $(this).closest(".form-group").parent().find('.expInfo').fadeOut(); // $(this).parent().parent('.expInfo').fadeOut(); } else { $(this).closest(".form-group").parent().find('.expInfo').fadeIn(); } }); });
$("[id*=WorkExperience]").each(function() { $(this).change(function() {
if ($(this).val() == "New to workforce") { $(this).closest(".form-group").parent().find('.expInfo').fadeOut(); // $(this).parent().parent('.expInfo').fadeOut(); } else { $(this).closest(".form-group").parent().find('.expInfo').fadeIn(); } }); });
$('input[type=radio][name=CurrentEmployer]').change(function() { if ($(this).val() == 'yes') {
$(this).closest(".presentDate").parent().find(".endDate").hide(); $(this).closest(".presentDate").parent().find(".presentWarp").append( '<p class="present mb-0 ml-2"><span class="d-block text-nowrap mt-2">- Present</span></p>' ); } else { $(this).closest(".presentDate").parent().find(".present").remove(); $(this).closest(".presentDate").parent().find(".endDate").fadeIn(); } }); $('input[type=radio][name=cvUpload]').change(function() { if (this.value == 'no') { $(".addotherEmployer").hide(); $(".removeEmployer").hide(); } else { $(".addotherEmployer").show(); $(".removeEmployer").show(); } });
$(function() { loopMonth(); loopYear(); loopExp(); loopGraYear();
$('#jobLocation').multiselect({ indentGroupOptions: false, enableCollapsibleOptGroups: true, selectAllText: ' ', selectAllValue: ' ', numberDisplayed: 100, inheritClass: true, includeSelectAllOption: false, buttonWidth: 140, enableCaseInsensitiveFiltering: false, enableFiltering: false, enableClickableOptGroups: false, enableCollapsibleOptGroups: false, nonSelectedText: ' ', onChange: function(option, checked) { $(".jobLocationCloseSelectBtn").show(); checkLocationSelectMax();
} });
$(document).on("change", ".jobLocationClass .multiselect-container .group input", function() { var groupVal = $(this).val();
if ($(this).is(':checked')) {
$("." + groupVal + "Child").addClass("show"); $('#jobLocation .' + groupVal + 'Child').each(function() { $('#jobLocation .' + groupVal + 'Child').prop('selected', false); $('#jobLocation').multiselect('refresh'); })
} else { if ($("." + groupVal + "Child").hasClass("active")) { $("." + groupVal + "Child").addClass("show"); } else { $("." + groupVal + "Child").removeClass("show"); }
}
$(`.${groupVal}Child a`).on('change', (e) => {
if ($(this).is(':checked')) { $('#jobLocation .' + groupVal + 'ChildTitle').each(function() { $('#jobLocation .' + groupVal + 'ChildTitle').prop('selected', false); $('#jobLocation').multiselect('refresh'); })
$("." + groupVal + "Child").addClass("show");
} else { if ($("." + groupVal + "Child").is(':checked')) { $("." + groupVal + "Child").addClass("show"); } else { $("." + groupVal + "Child").removeClass("show"); } } checkLocationSelectMax(); }) checkLocationSelectMax();
// Does some stuff and logs the event to the console });
$('#eventLocation').multiselect({ indentGroupOptions: false, enableCollapsibleOptGroups: true, selectAllText: ' ', selectAllValue: ' ', numberDisplayed: 100, inheritClass: true, includeSelectAllOption: false, buttonWidth: 140, enableCaseInsensitiveFiltering: false, enableFiltering: false, enableClickableOptGroups: false, enableCollapsibleOptGroups: true, nonSelectedText: ' '
});
$(document).on("change", "#eventLocation", function() {
var selectedOptions = $('#eventLocation option:selected'); var selectVal = selectedOptions.val();
$(".eventLocationCloseSelectBtn").show();
if (selectedOptions.length >= 1) { // Disable all other checkboxes.
var nonSelectedOptions = $('.eventLocationClass option').filter(function() { return !$(this).is(':selected'); });
nonSelectedOptions.each(function() { var input = $('.eventLocationClass input[value="' + $(this).val() + '"]'); input.prop('disabled', true); input.parent().parent().addClass('disabled'); });
$('.eventLocationClass .dropdown-menu').removeClass('show'); } else { // Enable all checkboxes.
$('.multiselectWrongMessage').remove();
{ $('.eventLocationClass option').each(function() {
var input = $('input[value="' + $(this).val() + '" ]');
input.prop('disabled', false); input.parent().parent().removeClass('disabled'); });
}
}
});
$('#jobFunction').multiselect({ indentGroupOptions: false, enableCollapsibleOptGroups: true, selectAllText: ' ', selectAllValue: ' ', numberDisplayed: 100, inheritClass: true, includeSelectAllOption: false, buttonWidth: 140, enableCaseInsensitiveFiltering: false, enableFiltering: false, enableClickableOptGroups: false, enableCollapsibleOptGroups: true, nonSelectedText: ' '
});
$(document).on("change", "#jobFunction", function() {
var selectedOptions = $('#jobFunction option:selected'); var selectVal = selectedOptions.val();
$(".jobFunctionCloseSelectBtn").show();
if (selectedOptions.length >= 1) { // Disable all other checkboxes.
var nonSelectedOptions = $('#jobFunction option').filter(function() { return !$(this).is(':selected'); });
nonSelectedOptions.each(function() { var input = $('input[value="' + $(this).val() + '"]'); input.prop('disabled', true); input.parent().parent().addClass('disabled'); });
$('.jobFunctionClass .dropdown-menu').removeClass('show');
} else { // Enable all checkboxes.
$('#jobFunction option').each(function() {
var input = $('input[value="' + $(this).val() + '" ]');
input.prop('disabled', false); input.parent().parent().removeClass('disabled'); });
}
});
}); </script> </body>
</html>
|