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
|
<!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 Job Seeker</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. Are you an employer? <a href="help_center.php" class="link">Contact us </a> here.</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" required> <option value="" disabled="" hidden="" selected="">Please select a subject</option> <option>Job Search</option> <option>Subsciption</option> <option>Job Posting</option> <option>Report a Suspicious Ad</option> <option>Email Issues</option> <option>System Error</option> <option>Account Settings</option> <option>Feedback or Suggestion</option> <option>Other</option> </select> </div> </div>
</div> <div class="col-md-12">
<div class="form-group err"> <label for="ContactName">Contact Name</label> <div class="customInputBar">
<input type="text" class="form-control searchInputBar" id="ContactName" placeholder=""> <a href="javascript:void(0);" class="searchDeleteBtn"><i class="fas fa-times"></i></a> </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 err">
<label for="PreferredEmail">Contact Email</label> <div class="customInputBar"> <input type="email" class="form-control searchInputBar" id="PreferredEmail" placeholder=""> <a href="javascript:void(0);" class="searchDeleteBtn"><i class="fas fa-times"></i></a> </div> <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="PreferredPhone">Contact Number</label> <div class="customInputBar"> <input type="text" class="form-control searchInputBar" id="PreferredPhone" placeholder=""> <a href="javascript:void(0);" class="searchDeleteBtn"><i class="fas fa-times"></i></a> </div> <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 phone number.
</p> </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">Input 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 btn-longer">Submit</button>
</form> </div>
</div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_n.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> // 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>
|