23 lines
756 B
PHP
23 lines
756 B
PHP
<?php
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Payment Success</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<div class="alert alert-success">
|
|
<h4 class="alert-heading">Payment Successful!</h4>
|
|
<p>Thank you for your purchase. Your payment has been processed successfully.</p>
|
|
<hr>
|
|
<p class="mb-0">You will receive an email confirmation shortly.</p>
|
|
</div>
|
|
<a href="products.php" class="btn btn-primary">Continue Shopping</a>
|
|
</div>
|
|
</body>
|
|
</html>
|