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
|
<!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="row"> <div class="col-md-12 overflow-auto"> <table class="table lightTable" style="border-bottom: 1px solid #dee2e6;"> <thead> <tr> <th scope="col" class="th-lg" style="width:50%"></th> <th scope="col" class="text-center">Available</th> <th scope="col" class="text-center grayBg">Used</th> <th scope="col" class="text-center">Remaining</th> </tr> </thead> <tbody> <tr> <td scope="row" class="pb-4 pt-4"> <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"> 7 of 20 “ads” available </p> <p class="selectText redWord"> Expires on 30 Mar 2020 </p> </div> </td> <td class="pb-4 pt-4"> <p class="h3 unbold text-center">7</p> </td> <td class="grayBg pb-4 pt-4"> <p class="h3 unbold text-center">1</p> </td> <td class="pb-4 pt-4"> <p class="h3 unbold text-center">6</p> </td> </tr>
<tr> <td scope="row" class="pb-4 pt-4"> <p class="h3 unbold">Priority Listing - 20 listings - 3M S031</p> <div class="d-flex mt-2 mb-2 customSelect flex-lg-row flex-column">
<p class="selectText"> 7 of 20 “listings” available <br />
</p> <p class="selectText"> Expires on 30 Mar 2020 </p> </div> <p class="mb-0">Listing: 3 days (12 Sep 2020 - 14 Sep 2020) </p> </td> <td class="pb-4 pt-4"> <p class="h3 unbold text-center">7</p> </td> <td class="grayBg pb-4 pt-4"> <p class="h3 unbold text-center">1</p> </td> <td class="pb-4 pt-4"> <p class="h3 unbold text-center">6</p> </td> </tr> </tbody> </table>
</div>
</div>
</div>
<div class="btnWrap text-center">
<button type="button" class="btn btn-outline-primary mr-4">Back</button> <button type="button" class="btn btn-primary" onclick="location.href='setp04_success.php';">Confirm</button> </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 --> <script type="text/javascript" src="../assets/js/custom.js"></script> </body>
<script>
</script>
</html>
|