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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Apply Success</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"> <div class="greenWord d-flex align-items-center mb-4"> <span class="h1 mb-0 mr-2"><i class="far fa-check-circle"></i></span> <p class="mb-0 h3">Your application has been submitted.</p> </div> <div class="row"> <div class="col-md-6 md_hide">
<div class="shadow grayBg p-4"> <h1>Linda Ing</h1> <ul class="iconList"> <li> <i class="fas fa-envelope"></i><a class="link" href="#">daddwdwd@gmail.com</a> </li> <li><i class="fas fa-phone"></i> +852 1234 5678 </li> <li><i class="fas fa-map-marker-alt"></i> Tseung kwan O , New Territories </li> <li><i class="fas fa-globe-asia"></i> Hong Kong permanent resident </li>
</ul> <hr> <p class="unbold h3">Latest Employment</p> <p class="mb-0 bold">Web Designer</p> <p class="mb-2 small">Belt Collins International (HK) Limited</p> <p class="mb-2 small garyFont">Mar-2021 to present</p>
<hr> <p class="unbold h3">Highest Education</p> <p class="mb-0 bold">Degree</p> <p class="mb-2 small">Summerville Charter School</p> <p class="mb-2 small garyFont">Mar-2021 to present</p> <hr>
<p class="unbold h3">Cover letter</p> <a href="#" class="link">ABC_CV.docx</a> <p class="garyFont small mb-2"> Uploaded on 26 Aug 2020 12:00PM</p> <hr> <p class="unbold h3">CV</p> <a href="#" class="link">ABC_CV.docx</a> <p class="garyFont small mb-2"> Uploaded on 26 Aug 2020 12:00PM</p> </div>
</div> <div class="col-md-6"> <p class="bold">Save your profile for your next application.</p>
<div class="form-group"> <label for="loginID">Login ID</label> <input type="text" class="form-control" id="loginID" disabled aria-describedby="emailHelp" placeholder="asdasda@das.com">
</div>
<div class="form-group passwordInput err"> <label for="newPassword">New password</label> <input type="password" class="form-control reveal password" id="newPassword" 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"> Your password should contain 8 to 20 characters with uppercase, lowercase and at least one number. </p> <small class="fieldWord"> Your password must have:</small> <ul class="clickList inlinelist fieldWord small"> <li class="greenWord">8 or more characters </li> <li>upper & lowercase letter </li> <li>at least one number </li> </ul> </div> <div class="form-group passwordInput err"> <label for="ConfirmPassword">Confirm password</label> <input type="password" class="form-control reveal password" id="ConfirmPassword" 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"> Sorry, your password doesn't match.
</p>
</div> <hr> <div class="custom-control custom-checkbox mb-4"> <input type="checkbox" class="custom-control-input" id="defaultCheck1" checked> <label class="custom-control-label" for="defaultCheck1"> Receive Job Reader eNews.</label> </div> <div class="custom-control custom-checkbox mb-4"> <input type="checkbox" class="custom-control-input" id="defaultCheck2" checked> <label class="custom-control-label" for="defaultCheck2"> Receive special promotions from Jobs Reader and advertisers.</label> </div> <div class="custom-control custom-checkbox mb-4"> <input type="checkbox" class="custom-control-input" id="defaultCheck3" checked> <label class="custom-control-label" for="defaultCheck3"> Job Recommendation<br>(Get personalized notifications for relevant jobs from Jobs Reader.) </label> </div> <div class="custom-control custom-checkbox err mb-4"> <input type="checkbox" class="custom-control-input" id="defaultCheck3"> <label class="custom-control-label" for="defaultCheck3"> I agree to Jobs Reader’s <a href="terms.php" class="link" target="_blank">Terms and Conditions</a> and <a href="privacy.php" class="link" target="_blank">Privacy Policy</a>. </label> <p class="redWord validate mt-1 mb-0"> You must agree to the Terms and Conditions and Privacy Policy.
</p> </div> <button type="button" class="btn btn-primary mb-4" title="Save Draft and Buy Credits" onclick="location.href='apply_member_success.php';">Save </button>
</div> </div>
</div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_n.php'; ?> <!-- end of footer -->
<!-- custom JS --> </body>
<script>
</script>
</html>
|