/var/www/hkosl.com/jobsreader/seeker/view/setp02b_job_ad_preview.php


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
<!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">
                <div class="stepImg">
                    <img src="../assets/images/step02.png" class="img-fluid" title="step01" alt="step01 image">
                </div>
                <h1 class="mt-4 pb-2">Would you like to promote your priority ad?</h1>
                <p>Maximize exposure for your job postings by rotating placement at the top for relevant categories</p>
                <hr>
            </div>

            <div class="row">
                <div class="col-md-6">
                    <p class="h3 unbold">Select your priority listing plan:</p>

                    <div class="paymentLabel grayBg">
                        <div class="methodItem disabled mb-3">
                            <p><b>No plan</b></p>

                        </div>
                    </div>
                    <label class="paymentLabel">
                        <div class="methodItem mb-3">
                            <input name="paymentMethodGroup" class="methodGroup hide" type="radio" />
                            <p><b>Priority Listing</b> - 20 listings - 3M S031</p>
                            <div class="d-flex mt-2 customSelect flex-lg-row flex-column">
                                <p class="selectText">
                                    7 of 20 listings available
                                </p>
                                <p class="selectText redWord">
                                    Expires on 30 Mar 2020
                                </p>
                            </div>
                        </div>
                    </label>

                    <label class="paymentLabel">
                        <div class="methodItem mb-3">
                            <input name="paymentMethodGroup" class="methodGroup hide" type="radio" />
                            <p><b>Priority Listing</b> - 20 listings - 3M S031</p>
                            <div class="d-flex mt-2 customSelect flex-lg-row flex-column">
                                <p class="selectText">
                                    7 of 20 listings available
                                </p>
                                <p class="selectText">
                                    Expires on 30 Mar 2020
                                </p>
                            </div>
                        </div>
                    </label>

                    <label class="paymentLabel">
                        <div class="methodItem mb-3">
                            <input name="paymentMethodGroup" class="methodGroup hide" type="radio" />
                            <p><b>Priority Listing</b> - 20 listings - 3M S031</p>
                            <div class="d-flex mt-2 customSelect flex-lg-row flex-column">
                                <p class="selectText">
                                    7 of 20 listings available
                                </p>
                                <p class="selectText">
                                    Expires on 30 Mar 2020
                                </p>
                            </div>
                        </div>
                    </label>



                </div>

                <div class="col-md-1 position-relative">
                    <div class="horBorder">
                    </div>

                </div>
                <div class="col-md-5">
                    <p class="h3 unbold">Check out the latest offers.</p>
                    <a href="pp_standard_ad.php" class="link" target="_blank">Learn more <i
                            class="fas fa-chevron-right"></i></a>
                </div>
            </div>
            <hr />

            <div class="row priorityDate">
                <div class="col-md-12 mb-2">
                    Select the duration of priority listing*:
                </div>
                <div class="col-md-12">
                    <div class="d-flex  mb-2 flex-lg-row flex-column">
                        <div class="d-flex mb-1">
                            <div class="form-group m-0">
                                <input type="text" class="form-control form_date">
                            </div>

                            <label class="col-form-label mr-2 ml-2 ">to</label>

                            <div class="form-group m-0 mr-2">
                                <input type="text" class="form-control form_date">
                            </div>
                        </div>
                        <div class="mobileBottom-4 mt-2">Listing: 0 day(s)</div>
                    </div>
                    <p>*1 listing for 1 day (min. 1day; max 7 days continuously)
                        <hr />
                </div>
            </div>

        </div>

        <div class="btnWrap text-center">

            <a class="link mr-4">Not this time</a>
            <button type="button" class="btn btn-primary nextBtn" disabled
                onclick="location.href='setp03_confirmation.php';">Continue</button>
        </div>





    </section>

    <!-- end #section -->






    <!-- footer -->
    <?php include 'inc/footer_n.php';?>
    <!-- end of footer -->

    <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/bootstrap-select.js"></script>
    <!-- custom JS -->
    
</body>

<script>
$('.methodGroup').change(function() {
    $(".methodItem").removeClass("active");
    $(this).parents().addClass("active");

    $(".priorityDate").show();
    $(".nextBtn").prop("disabled", false);
});
</script>

</html>