-
Notifications
You must be signed in to change notification settings - Fork 0
/
successful3.php
50 lines (47 loc) · 1.95 KB
/
successful3.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
<!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-color: skyblue;
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 style="width: 64px;" src="img/success.png"><img style="width: 64px;" src="img/success.png"><img style="width: 64px;" src="img/success.png"><img style="width: 64px;" src="img/success.png"><img style="width: 64px;" src="img/success.png">
</div>
<div class="card-body">
<p class="card-img"><img style="width: 120px;" src="https://img.icons8.com/external-icongeek26-linear-colour-icongeek26/64/000000/external-feedback-uxui-icongeek26-linear-colour-icongeek26-4.png"/></p>
<h5 class="card-title">You are feedback successfully submited</h5>
<p class="card-text">Thanks for giving rating and feedback, we will read it and improve our portal according<br> to your suugestion.</p>
<a href="index.php" class="btn btn-primary"><div class="home"><img src="https://img.icons8.com/material-rounded/48/000000/home.png"/></a></div>
</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>