-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccessful2.php
More file actions
50 lines (47 loc) · 1.8 KB
/
successful2.php
File metadata and controls
50 lines (47 loc) · 1.8 KB
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
<!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 applied for this post</h5>
<p class="card-text">Thanks for applying job from our portal, we hope you get this job.</p>
<a href="career.php" class="btn btn-primary">Apply for other job</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>