diff --git a/app/Views/pembelian/pembelian.php b/app/Views/pembelian/pembelian.php
index e6e82a1552d3b219d193e09311e8bed7f1c9956a..e575f507828532949806315a5b3adc2f6fa16015 100644
--- a/app/Views/pembelian/pembelian.php
+++ b/app/Views/pembelian/pembelian.php
@@ -1,24 +1,24 @@
-<<!-- app/Views/purchase.php -->
-
<!DOCTYPE html>
<html lang="en">
<head>
-<meta charset="UTF-8">
+ <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Purchase Ticket</title>
<link rel="stylesheet" type="text/css" href="/../../styles/global.css">
<link rel="stylesheet" type="text/css" href="/../../styles/form.css">
<link rel="stylesheet" type="text/css" href="/../../styles/footer.css">
<link rel="stylesheet" type="text/css" href="/../../styles/navbar.css">
+ <link rel="stylesheet" type="text/css" href="/../../styles/container.css">
+ <link rel="stylesheet" type="text/css" href="/../../styles/auth.css">
<!-- Include any CSS styles or external libraries here -->
</head>
<body>
-
- <?php include '../template/navbar.php';?>
-
+ <?php include 'Views/template/navbar.php';?>
+
+<div class="main-content">
+<div class="column">
<h1>Purchase Ticket</h1>
-
<!-- Display the ticket details -->
<h2>Ticket Details</h2>
<p>Ticket ID: <?php echo $ticket['ticket_id']; ?></p>
@@ -34,7 +34,8 @@
<button type="button" id="confirmPurchaseBtn">Confirm Purchase</button>
</form>
-
+</div>
+</div>
<!-- JavaScript code for the confirmation dialog -->
<script>
// Function to show the confirmation dialog
@@ -44,13 +45,13 @@
document.getElementById("purchaseForm").submit();
}
}
-
+
// Attach the confirmation dialog to the button click event
document.getElementById("confirmPurchaseBtn").addEventListener("click", showConfirmationDialog);
- </script>
+ </script>
<!-- Include any additional content or messages here -->
- <?php include '../template/footer.php';?>
+ <?php include 'Views/template/footer.php';?>
</body>
</html>