Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Payment Success</title> | |
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> | |
</head> | |
<body> | |
<div class="success-container"> | |
<h1>Payment Successful!</h1> | |
<p>Thank you for your purchase. Your payment has been processed successfully.</p> | |
<a href="/">Return to Home</a> | |
</div> | |
</body> | |
</html> | |