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
|
<!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="warningBg warningTopMessage"> <div class="container"> <div class="warningDetail font09"> [Server upgrade] Our website will be undergoing maintenance from 9 Oct 2020 (Wed) 2:30 am to 4:30am, certain services will be temporarily unavailable. We are sorry for any inconvenience caused. <a href="javascript:void(0);" class="warningTopCloseBtn"><i class="fas fa-times"></i></a> </div> </div> </div> <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 Credits Balance</p> <div class="d-flex creditWrap justify-content-center align-items-center flex-md-row flex-column"> <div class="creditItem"> <p class="h1 fieldWord">1</p> <p class="mb-2">Job ad credits</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</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"> <p class="h1 fieldWord">0</p> <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_p.php';?> <!-- end of footer -->
<!-- custom JS --> </body>
<script>
</script>
</html>
|