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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Contact Us</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-->
<section class="wrapper">
<div class="container middleWrap"> <p class="greenWord"><b>For Employer</b></p> <p class="mb-4 h1 unbold">Contact Us </p> <p>Send us a message using the form below and we’ll get back to you shortly. Can’t wait? Search for answer in our <a href="help_center.php" class="link">Help Center <i class="fas fa-chevron-right"></i></a> .</p> <form> <div class="row"> <div class="col-md-12">
<div class="form-group"> <label for="Subject">Subject</label> <div class="selectionSelecter"> <select class="form-control" id="Subject"> <option selected disabled>Please select a subject</option> <option>Employer Registration</option> <option>Login / Password</option> <option>Job Posting</option> <option>Payment / Invoicing</option> <option>Pricing Info</option> <option>Banner Ads on Jobs Reader</option> <option>Account Settings</option> <option>Jobs Reader emails</option> <option>Reports</option> <option>Privacy</option> <option>Technical Problems</option> <option>Feedback or Suggestion</option> <option>Other</option> </select> </div> </div>
</div> <div class="col-md-6">
<div class="form-group"> <div class="form-group"> <label for="FirstName">First name</label> <input type="text" class="form-control" id="FirstName" placeholder=""> </div> </div>
</div> <div class="col-md-6">
<div class="form-group"> <div class="form-group"> <label for="LastName">Last name</label> <input type="text" class="form-control" id="LastName" placeholder=""> </div> </div>
</div>
<div class="col-md-12">
<div class="form-group"> <div class="form-group"> <label for="CompanyName">Company name</label> <input type="text" class="form-control" id="CompanyName" placeholder=""> </div> </div>
</div> <div class="col-md-12">
<div class="form-group"> <div class="form-group"> <label for="PreferredEmail">Preferred email address</label> <input type="email" class="form-control" id="PreferredEmail" placeholder=""> </div> </div>
</div> <div class="col-md-12">
<div class="form-group"> <div class="form-group"> <label for="PreferredPhone">Preferred contact number</label> <input type="text" class="form-control" id="PreferredPhone" placeholder=""> </div> </div>
</div> <div class="col-md-12">
<div class="form-group"> <label for="industry">Company industry </label> <div class="selectionSelecter"> <select class="form-control" id="industry">
</select> </div> </div>
</div> <div class="col-md-12"> <div class="form-group"> <label for="Message">Message</label> <textarea class="form-control" id="Message" rows="3"></textarea> </div> </div>
</div> <div class="row mb-4 align-items-center"> <div class="col-md-5"> <div class="form-group"> <label for="phoneNo">In put captcha</label> <input type="text" class="form-control" id="phoneNo" placeholder=""> </div> </div> <div class="col-md-4"> <div class="d-flex align-items-center"> <canvas id="canvas" class="captcha mr-4"></canvas> <a href="javascript:void(0);" class="link refashCapBtn white-space"> <i class="fas fa-redo-alt"></i> New Code</a> </div> </div>
</div> <p>By clicking "Submit", you agree to Jobs Reader's <a href="terms.php" title="Terms & Conditions">Terms & Conditions</a> and <a href="privacy.php" title="Privacy Policy">Privacy Policy</a>. You consent you will receive follow up emails and/or calls from Jobs Reader.</p> <button type="submit" class="btn btn-primary mt-4 submit">Submit</button>
</form> </div>
</div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_p.php';?> <!-- end of footer --> <script type="text/javascript" src="../assets/js/ajax.js"></script> <script type="text/javascript" src="../assets/js/jquery-captcha-lgh.js"></script> <script type="text/javascript" src="../assets/js/select2.js"></script> <!-- custom JS --> <script type="text/javascript" src="../assets/js/custom.js"></script> <script> // step-1 const captcha = new Captcha($('#canvas'), { length: 4 }); // api //captcha.refresh(); //captcha.getCode(); //captcha.valid(""); $(".submit").click(function() { alert("Thank you your inquiry. We will revert shortly."); }); $('.refashCapBtn').on('click', function() { // const ans = captcha.valid($('input[name="code"]').val()); // alert(ans); captcha.refresh(); }) </script>
</body>
</html>
|