-
Notifications
You must be signed in to change notification settings - Fork 0
/
jobsite_home.php
407 lines (324 loc) · 11.6 KB
/
jobsite_home.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jobsite Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.modal-header, .a, .close {
background-color: #5cb85c;
color:white !important;
text-align: center;
font-size: 30px;
}
.modal-body{
color:black;
}
.modal-footer {
background-color: #f9f9f9;
}
<!-- ****css ****-->
.navbar {
margin-bottom: 0;
border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
position: relative;
background-color:black;
padding: 25px;
height:150px;
}
.innerFooter{
height: 95%;
width: 80%;
background-color:black;
color: white;
}
.innerFooter:hover {
background-color:#F5EEF8;
opacity:0.5;
color:#191069;
}
body{
background-color: #f5eef8 ;
}
h3
{
color:#191069 ;
}
h4{
color:#F0F3F4 ;
}
p{
color: black;
}
.container_text-center{
background-color: black;
color: white;
}
.row{
background-color: #f5eef8 ;
}
.section-seperator{
background-color:blue;
}
.carousel-caption{
/*background-color:yellow;*/
}
.myCarousel{
background-color: blue;
}
#img5 {
width:100%;
height: 600px;
}
#img2 {
width:100%;
height: 600px;
}
#img4 {
width:100%;
height: 600px;
}
#img6 {
width:100%;
height: 600px;
}
#img5:hover {
height: 650px;
transition:5s;
}
#img2:hover {
height: 650px;
transition:5s;
}
#img4:hover {
height: 650px;
transition:5s;
}
#img6:hover {
height: 650px;
transition:5s;
}
.carousel-inner{
width: 100%; /* Set width to 100% */
height: 600px;
margin: auto;
/*min-height:100px;*/
background-color:red;
}
/* Hide the carousel text when the screen is less than 600 pixels wide */
@media (max-width: 600px) {
.carousel-caption {
display: none;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header" style="margin-top: 5px;">
<img src="job.png" alt="Unload" width="40" height="40"/>
</div>
<div class="navbar-header">
<a class="navbar-brand" href="view_alljobs.php">JOBSITE.COM</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="view_alljobs.php">JOBS</a></li>
<li><a href="#"></a></li>
<form class="navbar-form navbar-left">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a style="text-decoration:none;" href="#" role="button" id="myBtn1"><span class="glyphicon glyphicon-log-in"></span> User Login</a>
<div class="modal fade" id="myModal1" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="a"><span class="glyphicon glyphicon-lock"></span>User Login</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form" action="connect_login.php" method="POST">
<div class="form-group">
<label for="username"><span class="glyphicon glyphicon-user"></span> Username</label>
<input type="text" id="username" class="form-control" name="username" placeholder="Enter Username" required="">
</div>
<div class="form-group">
<label for="password"><span class="glyphicon glyphicon-eye-open"></span>Password</label>
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
</div>
<button type="submit" class="btn btn-success btn-block" name="submit"><span class="glyphicon glyphicon-off"></span> Login</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p>Not a Member? <a href="user_register.php">Sign Up</a></p>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$("#myBtn1").click(function(){
$("#myModal1").modal();
});
});
</script>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a style="text-decoration:none;" href="#" role="button" id="myBtn2"><span class="glyphicon glyphicon-user"></span>Employer Login</a>
<div class="modal fade" id="myModal2" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:35px 50px;">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="a"><span class="glyphicon glyphicon-lock"></span>Employer Login</h4>
</div>
<div class="modal-body" style="padding:40px 50px;">
<form role="form" action="connect_login.php" method="POST">
<div class="form-group">
<label for="username"><span class="glyphicon glyphicon-user"></span> Username</label>
<input type="text" id="username" class="form-control" name="username" placeholder="Enter Username" required="">
</div>
<div class="form-group">
<label for="password"><span class="glyphicon glyphicon-eye-open"></span>Password</label>
<input type="password" id="password" class="form-control" name="password" placeholder="Password" required>
</div>
<button type="submit" class="btn btn-success btn-block" name="submit"><span class="glyphicon glyphicon-off"></span> Login</button>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-danger btn-default pull-left" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Cancel</button>
<p>Not a member? <a href="employer_register.php">Sign Up</a></p>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$("#myBtn2").click(function(){
$("#myModal2").modal();
});
});
</script>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown"
href="#">Create account<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="employer_register.php">Employer account</a></li>
<li><a href="user_register.php">User account</a></li>
</ul>
</li>
<!--<li><a href="#"><span class="glyphicon glyphicon-log-in">Login</span></a></li> -->
</ul>
</div>
</nav>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img id="img2" src="http://localhost/jobsite_project/image/slideImage2.jpg" alt="Image">
<div class="carousel-caption">
<h3>More Sell $</h3>
<p>Lorem ipsum...</p>
</div>
</div>
<div class="item">
<img id="img4" src="http://localhost/jobsite_project/image/slideImage4.jpg" alt="Image">
<div class="carousel-caption">
<h3>More Sell $</h3>
<p>Lorem ipsum...</p>
</div>
</div>
<div class="item">
<img id="img6" src="http://localhost/jobsite_project/image/slideImage6.jpg" alt="Image">
<div class="carousel-caption">
<h3>More Sell $</h3>
<p>Lorem ipsum...</p>
</div>
</div>
<div class="item">
<img id="img5" src="http://localhost/jobsite_project/image/slideImage5.jpg" alt="Image" >
<div class="carousel-caption">
<h3>More Sell $</h3>
<p>Lorem ipsum...</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="container_text-center">
<marquee scrollamount="5"><h4>* Available Banking job is 50 * Available Engineering job is 70 * Available IT job is 60 * Available Garments job is 100 * Available Customer Support job is 70 * Available Textile job is 80 * Available Marketing job is 150 * Others Available job is 20 *</h4></marquee> <br>
<center><h2>Job Catagory</h2></center>
<div class="row">
<div class="col-sm-4">
<ul>
<li><a href="bank.php"><h3>>Bank</h3></a></li>
<li><a href="engineering.php"><h3>>Engineering</h3></a></li>
<li><a href="it.php"><h3>>IT</h3></a></li>
<li><a href=" "><h3>>Garments</h3></a></li>
</ul>
</div>
<div class="col-sm-4">
<ul>
<li><a href=""><h3>>Customer Support</h3></a></li>
<li><a href=""><h3>>Textile</h3></a></li>
<li><a href=""><h3>>Marketing</h3></a></li>
<li><a href=""><h3>>Others</h3></a></li>
</ul>
</div>
<div class="col-sm-4">
<div class="well">
<p>Have you ever recruited an entirely new role and never mentioned that in the job description?
If you are, you’re missing out on a golden opportunity to make the business look dynamic and look like it’s really growing
</p>
</div>
<div class="well">
<p>Some text..</p>
</div>
</div>
</div>
</div><br>
<footer class="container-fluid text-center">
<center>
<div class="innerFooter">
<b>Join the Largest Job Site of Bangladesh</b>
<h3>Call for help 1623</h3>
</div>
</center>
</footer>
</body>
</html>