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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Write Job Ad</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="setpWrap"> <div class="stepImg text-center"> <img src="../assets/images/step04.png" class="img-fluid" title="step01" alt="step04 image"> </div> <h1 class="mt-4 mb-4 text-center">Your job posting is completed. Thank you.</h1> <div class="table-responsive pt-4"> <table id="table" class="table w-auto"> <thead> <tr> <th style="width: 8rem;">Status</th>
<th class="th-lg" style="width: 30rem;">Job Title</th>
<th>Job Ad No.</th> <th>Post Date</th> <th>Expiry Date</th>
</tr> </thead> <tbody> <tr> <td class="greenWord text-nowrap">Open</td> <td> <a href="job_ads_list.php" class="link">Accounting Clerk - Ocean Freight (5 days work, 14 months pay)</a>
</td> <td class="fieldWord">JRYYYYMM00001</td>
<td>22 Sep 2020</td> <td>22 Sep 2020</td>
</tr> </table> <hr /> </div>
<div class="container"> <div class="btnWrap flex-md-row flex-column gap20 justify-content-center"> <button type="button" class="btn btn-outline-primary" onclick="location.href='job_ads.php';">Manage Your Job Ads</button> <button type="button" class="btn btn-primary" onclick="location.href='setp01_write_job.php';">Post Another Job Ad</button>
</div> </div> </div> </div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_p.php';?> <!-- end of footer --> <script src="https://cdn.ckeditor.com/4.14.1/standard/ckeditor.js"></script> <script src="../assets/js/bootstrap-datetimepicker.js"></script> <script type="text/javascript" src="../assets/js/select2.js"></script> <script type="text/javascript" src="../assets/js/bootstrap-select.js"></script> <!-- custom JS --> </body>
<script>
</script>
</html>
|