-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.php
263 lines (236 loc) · 10.7 KB
/
index.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<?php
/**
* Online-Job-Portal - A web application built on PHP HTML & javascript
Copyright (C) 2016 Sreelal C
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Job Portal </title>
<script type="application/javascript">
$(document).ready(function(){
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#insidenav']").on('click', function(event) {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
});
$(window).scroll(function() {
$(".slideanim").each(function(){
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
</head>
<nav class="navbar" id="insidenav">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Job Portal</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a data-toggle="tab" href="#main1">Home</a></li>
<li><a data-toggle="tab" href="#recent"">Recent Jobs</a></li>
<li><a data-toggle="tab" href="#jobseeker">Job Seeker</a></li>
<li><a data-toggle="tab" href="#">Employer</a></li>
<li><a data-toggle="tab" href="#contact">Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">
<span class="glyphicon glyphicon-user"></span> Register <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="jobseeker/register_user.php">Jobseeker</a></li>
<li role="separator" class="divider"></li>
<li><a href="employer/register_emp.php">Employer</a></li>
</ul>
</li>
<li><a href="login.php"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</nav>
<!--- -------------------------------------------------------------------------------------------------- -->
<body id="indexbody" data-spy="scroll" data-target=".navbar" data-offset="60">
<div class="bmsTop">
<ul>
<li style="font-size: 15px; font-weight: bold">Top Recruiters:</li>
<li><a href="#" target="_blank">
<img src="images/1.gif" border="0">
</a></li>
<li><a href="#" target="_blank">
<img src="images/2.gif" border="0">
</a></li>
<li><a href="#" target="_blank">
<img src="images/3.gif" border="0"></a>
</li>
<li><a href="#" target="_blank">
<img src="images/4.gif" border="0"></a></li>
<li><a href="#" target="_blank">
<img src="images/5.gif" border="0"></a>
</li>
</ul>
</div>
<div class="container-fluid" id="main1"> <!-- jumbotron fluid -->
<div class="jumbotron text-center" id="searchjum">
<h1>Job Portal</h1>
<p>Search for Jobs</p>
<form class="form-inline" id="homesearch">
<input type="text" class="form-control" size="50" placeholder="Enter your search keyword" name="keyword" id="keyword">
<button type="button" onclick="search()" class="btn btn-lg " style="color: black"><span class="glyphicon glyphicon-search"></span> Search</button>
</form>
</div>
</div> <!-- jumbotron -->
<div class="container" id="subcontent" style="background: transparent">
<!-- div for search contents -->
</div>
<div class="page-header" style="background:#1abc9c"></div>
<div class="container-fluid" style="background: transparent">
<div class="text-center">
<h2>Register</h2>
<h4>Register in this website for a better experience</h4>
</div>
<div class="row">
<div class="col-sm-4">
<div class="panel panel-default text-center">
<div class="panel-heading">
<h1>Employers</h1>
</div>
<div class="panel-body">
<p style="font-size: 16px">Register today and post a job in easy steps and start receiving applications the same day.
Find the right candidates easily and quickly through our Search feature.</p>
</div>
<div class="panel-footer">
<h3>$0</h3>
<a href="employer/register_emp.php" style="color: inherit"> <button class="btn btn-lg">Sign Up</button></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-default text-center">
<div class="panel-heading">
<h1>Job Seekers</h1>
</div>
<div class="panel-body">
<p style="font-size: 16px">Helps passive and active jobseekers find better jobs. Get connected with over 45000 recruiters.
Apply to jobs in just one click. Apply to thousands of jobs posted daily.</p>
</div>
<div class="panel-footer">
<h3>$0</h3>
<a href="jobseeker/register_user.php" style="color: inherit"><button class="btn btn-lg">Sign Up</button></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-default text-center">
<div class="panel-heading">
<h1>Premium</h1>
</div>
<div class="panel-body">
<p style="font-size: 16px;">Better Exposure <br>
Better Support</p>
</div>
<div class="panel-footer">
<h3>$4</h3>
<h4>per month</h4>
<button class="btn btn-lg disabled">Upgrade</button>
</div>
</div>
</div>
</div>
</div>
<div class="container bg-grey" id="contact">
<div class="page-header" style="background: #f4511e"></div>
<h2 class="text-center">CONTACT US</h2>
<div class="page-header"></div>
<div class="row">
<div class="col-sm-5">
<p>Contact us and we'll get back to you within 24 hours.</p>
<p><span class="glyphicon glyphicon-map-marker"></span> Kozhikode, India</p>
<p><span class="glyphicon glyphicon-phone"></span> +91 8943 202726</p>
<p><span class="glyphicon glyphicon-envelope"></span> [email protected]</p>
</div>
<div class="col-sm-7">
<div class="row">
<div class="col-sm-6 form-group">
<input class="form-control" id="name" name="name" placeholder="Name" type="text" required>
</div>
<div class="col-sm-6 form-group">
<input class="form-control" id="email" name="email" placeholder="Email" type="email" required>
</div>
</div>
<textarea class="form-control" id="comments" name="comments" placeholder="Comment" rows="5"></textarea><br>
<div class="row">
<div class="col-sm-12 form-group">
<button class="btn btn-default pull-right" type="submit">Send</button>
</div>
</div>
</div>
</div>
</div> <!-- Contact -->
</div> <!-- sub content -->
<div class="page-header" style="background: #f4511e"></div>
</div> <!-- Container -->
<!-- Set height and width with CSS -->
<div id="googleMap" style="height:400px;width:100%;"></div>
<!-- Add Google Maps -->
<script src="http://maps.googleapis.com/maps/api/js"></script>
<script>
var myCenter = new google.maps.LatLng(11.2680519,75.7891479);
function initialize() {
var mapProp = {
center:myCenter,
zoom:12,
scrollwheel:false,
draggable:false,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
var marker = new google.maps.Marker({
position:myCenter,
});
marker.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<footer class="container-fluid text-center">
<a href="#insidenav" title="To Top">
<span class="glyphicon glyphicon-chevron-up"></span>
</a>
<p>Job Portal</p>
</footer>
</body>
<script src="js/jquery-1.12.0.min.js"></script>
<script src="js/search.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/home.css" rel="stylesheet">
<link rel="stylesheet" href="bootstrap/dist/css/bootstrap.min.css">
</html>