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 - Skills</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--> <?php include 'inc/profile_nav.php';?>
<div class="grayBg"> <div class="container"> <div class="font09 text-center setpWrapper"> <h3 class="mb-4">Strengthen your profile. Let employers know more about you. </h3> <div class="setpWrap text-center"> <div class="stepImg mb-4"> <img src="../assets/images/step03.png" class="img-fluid" title="step01" alt="step01 image"> </div> <div class="d-flex stepDetailBar"> <p class="blueWord mr-1 mb-0">Skills: </p> <p class="mb-0">Add skills to show your strength points.</p> <div class="ml-auto"> <a href="setp03_education.php" class="mr-2 blackDeepWord" readonly><i class="fas fa-chevron-left"></i></a> <a href="setp05_languages.php" class="blackDeepWord"><i class="fas fa-chevron-right"></i></a>
</div> </div>
</div> <a href="javascript:void(0);" class="warningCloseBtn fieldWord"><i class="fas fa-times"></i></a> </div> </div> </div>
<div class="container"> <div class="row subMenuWrap noborder"> <div class="ml-auto mt-2 mobileLeft"> <!-- <a href="#" class="link mr-4" data-toggle="modal" data-target=".deletCandidates"><i class="far fa-times-circle"></i> Preview</a>--> <a href="#" class="link mr-4"><i class="far fa-file-alt"></i> Preview</a> <!-- <a href="#" class="link mr-4"><i class="fas fa-share"></i> Forward</a> <a href="#" class="link"><i class="far fa-file-pdf"></i> Save to PDF</a>--> </div> </div> </div>
<section class="wrapper">
<div class="container ">
<div class="row"> <div class="col-lg-3"> <p class="unbold h3">Skills</p>
</div> <div class="col-lg-9"> <div class="previewRowDetail">
<div class="previewRowDetailItem"> <div class="previewRowDetailItemDetail"> <P>Accountability, Analyzing information, Communication, Critical thinking, Digital literacy, Follow directions, Imagination, Initiative, Organization, Problem solving, Questioning, Reading, Time management, Writing </p> </div>
<hr> <div class="previewRowDetailItemDetail"> <p class="mb-0">-</p> </div> <hr> <div class="editProfileBtnWrap"> <a href="javascript:void(0);" class='link editProfileBtn'>Edit</a> </div> </div>
</div> <div class="editRowDetail"> <div class="row"> <div class="col-md-12"> <div class="form-group mb-0"> <p>Skills</p>
<textarea class="form-control countText" placeholder="Use commas to separate words" 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 class="d-flex">
<button type="button" class="btn btn-outline-primary mt-4 mr-2 cancelEditBtn">Cancel</button> <button type="button" class="btn btn-primary mt-4 saveEditBtn">Save</button> </div>
</div> </div>
</div>
<hr>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_n.php';?>
<!-- end of footer --> <script type="text/javascript" src="../assets/js/loadpage.js"></script>
<script type="text/javascript" src="../assets/js/ajax.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 --> </body>
<script> $(".editProfileBtn").click(function() { $(this).closest(".previewRowDetail").hide(); $(this).closest(".previewRowDetail").parent().find(".editRowDetail").fadeIn();
});
$(".cancelEditBtn").click(function() { $(this).closest(".editRowDetail").hide(); $(this).closest(".editRowDetail").parent().find(".previewRowDetail").fadeIn();
});
$(".saveEditBtn").click(function() { $(this).closest(".editRowDetail").hide(); $(this).closest(".editRowDetail").parent().find(".previewRowDetail").fadeIn();
});
$(".saveDraftBtn").click(function() {
$('.saveDraftMessage').fadeIn(); setTimeout(function() { $('.saveDraftMessage').fadeOut(); }, 8000);
});
$(function() { loopMonth(); loopYear(); loopExp();
$('[data-toggle="tooltip"]').tooltip() }) </script>
</html>
|