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
|
<!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 text-center mb-4"> <div class="stepImg"> <img src="../assets/images/step03.png" class="img-fluid" title="step01" alt="step03 image"> </div> <h1 class="mt-4 pb-2">Confirmation</h1> <!-- <p>Each job ad is visible for up to 30 days</p>-->
</div>
<div class="table-responsive"> <table id="table" class="table w-auto"> <thead> <tr> <th class="bold" style="width:45rem">Description</th>
<th class="text-center bold">Deducted Credit(s)</th> <th class="text-center bold">Remaining Credit(s)</th>
</tr> </thead> <tbody> <tr> <td> <p class="h3 unbold">Standard Ad - 20 ads - 3M - S031</p> <div class="d-flex mt-2 customSelect flex-lg-row flex-column">
<p class="selectText redWord"> Expires on 30 Mar 2020 </p> </div> </td> <td> <p class="h3 text-center blod"> 1</p>
</td>
<td> <p class="h3 text-center"> 6</p> </td>
</tr> </table>
</div>
<hr class="mb-3 mt-0" /> Each job ad is visible for up to 30 days
</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='setp02a_job_ad_preview.php';">Back</button> <button type="button" class="btn btn-primary" onclick="location.href='setp04_success.php';">Confirm</button> </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>
|