-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbill.php
More file actions
60 lines (53 loc) · 1.4 KB
/
Copy pathbill.php
File metadata and controls
60 lines (53 loc) · 1.4 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
51
52
53
54
55
56
57
58
59
60
<?php
$eventId = $_GET["eventId"];
//$eventId = 21;
//echo $eventId;
require "eventClass.php";
$obj = new db();
$r = $obj->bill($eventId);
?>
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Bill</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
body {
background-color: #f8f9fa;
padding-top: 50px;
}
.container {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-top: 20px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.logo {
max-width: 150px;
margin: 0 auto;
display: block;
}
</style>
</head>
<body>
<div class="container">
<img src="./image/payment_success.png" alt="Success Logo" class="logo">
<h2>Transaction Details</h2>
<div class="row">
<div class="col-md-6">
<p><strong>Payment Method:</strong> <?php echo "CARD"; ?></p>
<a href="profile.php">Profile</a>
</div>
</div>
</div>
</body>
</html>
</html>