-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccessful.php
58 lines (55 loc) · 1.94 KB
/
successful.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
<?php
error_reporting(0);
require_once "loginfo.php";
if (!isset($_SESSION['loggedin'])) {
header('Location: ln.php');
exit;
}
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
body{
background-image: url("img/posted.jpg");
background-size: cover;
}
.card-img{
margin-left: -25em;
margin-bottom: -130px;
}
.card-title{
font-weight:bold;
}
</style>
<title>Successful</title>
<link rel="shortcut icon" type="image/x-icon" href="img/NLJ.png">
</head>
<body>
<div class="container mt-4">
<div class="card text-center">
<div class="card-header">
<img src="https://img.icons8.com/color/48/000000/christmas-star.png"/><img src="https://img.icons8.com/color/48/000000/christmas-star.png"/><img src="https://img.icons8.com/color/48/000000/christmas-star.png"/><img src="https://img.icons8.com/color/48/000000/christmas-star.png"/><img src="https://img.icons8.com/color/48/000000/christmas-star.png"/>
</div>
<div class="card-body">
<p class="card-img"><img src="img/success.png"></p>
<h5 class="card-title">You are successfully post the job</h5>
<p class="card-text">Thanks for posting job on our portal, we hope you get a best employee.</p>
<a href="dashboard.php" class="btn btn-primary">See your posted job here</a>
</div>
<div class="card-footer text-muted">
<p><span id='date-time'></span>.</p>
</div>
</div>
</div>
<script>
var dt = new Date();
document.getElementById('date-time').innerHTML=dt;
</script>
</body>
</html>