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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Home</title> <!-- css --> <?php include 'inc/headlinks.php';?> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header --> <?php include 'inc/header_demo.php';?> <!-- end of header--> <div class="warningBg"> <div class="container"> <div class="warningDetail font09"> [Server upgrade] Our website will be undergoing maintenance from 9 Oct 2020 (Wed) 2:30 am to 4:30am, certain services will be temporarily unavailable. We are sorry for any inconvenience caused. <a href="javascript:void(0);" class="warningCloseBtn"><i class="fas fa-times"></i></a> </div> </div> </div>
<section class="wrap" style="background-image:url(../assets/images/banner.jpg)">
<div class="container loginWrap"> <div class="row align-items-center"> <div class="col-lg-6"> <h1 class="unbold whiteWord mb-4"> Lots to hire. Less to spend. Find better with us. </h1> </div> <div class="col-lg-6"> <div class="loginBox"> <h2 class="mb-3">Employer Login</h2> <div class="form-group iconInput err"> <i class="fas fa-user-alt"></i> <input type="email" class="form-control" id="Email" placeholder="Email"> <p class="redWord validate mt-1 mb-0"> Please enter this information. </p> </div> <div class="form-group iconInput err"> <i class="fas fa-unlock-alt"></i> <input type="password" class="form-control loginPassword" id="Password" placeholder="Password"> <p class="redWord validate mt-1 mb-0"> Please enter this information.
</p> <p class="redWord validate mt-1 mb-0"> Your Login ID or password was incorrect. </p> </div> <a href="forget_password.php" class="whiteLink mb-4 btn-block">Forgot Password?</a> <button type="button" class="whiteBtn btn btn-block mb-4" onClick="location.href='email_verification.php';">Login</button> <p class="small"> By continuing, you agree to our <a href="terms.php" class="link">Terms & Conditions</a> and acknowledge our <a href="privacy.php" class="link">Privacy Policy</a>. </p> </div> </div> </div> </div> </section>
<!-- end #section -->
<section class="text-center wrap"> <div class="container"> <p class="h2 mb-4" title="How it works?">How it works?</p> <p class="h1" title="Publisublish your job ad">Publish Your Job Ad</p> <p class="h3 mb-4 unbold">We've go flexible plans that fit your recruiting needs.</p> <a href="ps_job_posting.php" class="link">Explore our job posting solutions <i class="fas fa-chevron-right"></i></a> <div class="mainImg mb-4"> <img src="../assets/images/main01.png" class="img-fluid" title="How it works?" alt="Publisublish your job ad image"> </div> </div> </section>
<section class="text-center wrap grayBg"> <div class="container"> <p class="h1 mb-4" title="Promote & Connections">Promote & Connections</p> <p class="h3 mb-4 unbold">Promote your job opportunities & connect with the best candidates.</p> <div class="mainImg mb-4">
<img src="../assets/images/main02.png" class="img-fluid" title="Promote & Connections" alt="Promote & Connections image"> <div class="mainLmgDetail topLeft"> <p class="blod h4">Job Recommendation</p> <p>Based on career background comes up job recommendations for candidates.</p> </div> <div class="mainLmgDetail topRight"> <p class="blod h4">Job Alerts</p> <p>Notify candidates of jobs matched results.</p> </div> <div class="mainLmgDetail bottomLeft"> <p class="blod h4">Social Media</p> <p>Access to active & passive candidates. An intersection of recuitment and social media. </div> <div class="mainLmgDetail bottomRigth"> <p class="blod h4">Search Engines</p> <p>Online jobs search available to global users.</p> </div> </div>
</div> </section>
<section class="text-center wrap"> <div class="container"> <p class="h1 mb-4" title="Promote & Connections">CV Applications</p> <p class="h3 mb-4 unbold">Get a job-winning candidate resume from us.</p> <div class="mainImg mb-4">
<img src="../assets/images/main03.png" class="img-fluid" title="CV Applications" alt="CV Applications image"> <div class="mainLmgDetail middleLeft"> <p class="blod h4">Direct to Inbox</p> <p>Candidate resumes will be sent directly to your email inbox. </p> </div> <div class="mainLmgDetail middleRight"> <p class="blod h4">Online Resume Database</p> <p>You can easily check, review and download resumes from your Jobs Reader account to manage and measure your entire recruitment process.</p> </div>
</div>
</div> </section>
<!-- footer --> <?php include 'inc/footer_n.php';?> <!-- end of footer -->
<!-- custom JS --> <script type="text/javascript" src="../assets/js/password.js"></script> <script type="text/javascript" src="../assets/js/custom.js"></script> </body>
<script> $(".loginPassword").password({ eyeClass: "fa", eyeOpenClass: "fa-eye", eyeCloseClass: "fa-eye-slash", message: "keep your password security" }); </script>
</html>
|