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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Check Out</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-->
<div class="navbar-expand-lg mt-4"> <div class="d-flex align-items-center m-3 flex-md-row flex-column"> <div class="h2 unbold mb-4"> Hello, [primary company name] </div> <div class="ml-auto align-items-center mobileLeft"> <button type="button" class="btn btn-primary" onClick="location.href='setp01_write_job.php';">Post a Job</button> </div> </div> </div>
<section class="wrapper">
<div class="container"> <div class="row">
<!--success--> <div class="col-md-12 text-center"> <p class="h1 unbold">My Credit Balance</p> <div class="d-flex creditWrap justify-content-center align-items-center flex-md-row flex-column"> <div class="creditItem"> <button type="button" class="btn-sm btn-outline-primary mb-3" onclick="location.href='pp_standard_ad.php';">Buy</button> <p class="mb-2">Standard Ad</p> </div> <div class="creditItem"> <p class="h1 fieldWord">0</p> <p class="mb-2">Advance Ad</p> </div>
<div class="creditItem"> <button type="button" class="btn-sm btn-outline-primary mb-3" onclick="location.href='pp_recruitment_day.php';">Buy</button> <p class="mb-2">Recruitment Day</p> </div> <div class="creditItem"> <button type="button" class="btn-sm btn-outline-primary mb-3" onclick="location.href='pp_job_slot.php';">Buy</button> <p class="mb-2">Job Slots</p> </div> <div class="creditItem"> <button type="button" class="btn-sm btn-outline-primary mb-3" onclick="location.href='pp_priority_listing.php';">Buy</button> <p class="mb-2">Priority Listing</p> </div> </div> <a href="bi_summary.php" class="link"> See credit summary <i class="fas fa-chevron-right"></i></a> <hr> </div>
<div class="col-md-12 text-center"> <p class="h1 unbold">My Job Ads and Candidates</p> <div class="d-flex creditWrap justify-content-center align-items-center flex-md-row flex-column"> <div class="creditItem"> <p class="h1 fieldWord">0</p> <p class="mb-2">Open</p> </div> <div class="creditItem"> <button type="button" class="btn-sm btn-outline-primary mb-3" onclick="location.href='pp_job_slot.php';">Buy</button> <p class="mb-2">Scheduled</p> </div> <div class="creditItem"> <p class="h1 fieldWord">0</p> <p class="mb-2">Paused</p> </div> <div class="creditItem"> <p class="h1 fieldWord">0</p> <p class="mb-2">Draft</p> </div> <div class="creditItem"> <p class="h1 fieldWord">0</p> <p class="mb-2">Candidates</p> </div> </div> <a href="job_ads.php" class="link mr-4"> See your job ads <i class="fas fa-chevron-right"></i></a>
<a href="candidates_list.php" class="link">See your candidates <i class="fas fa-chevron-right"></i> </a> </div>
</div> </div>
</section>
<!-- end #section -->
<!-- footer --> <?php include 'inc/footer_e.php';?> <!-- end of footer -->
<!-- custom JS --> <script type="text/javascript" src="../assets/js/custom.js"></script> </body>
<script>
</script>
</html>
|