27 lines
1013 B
Plaintext
27 lines
1013 B
Plaintext
@{
|
|
Layout = null;
|
|
}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Payment Successful</title>
|
|
<link rel="stylesheet" href="~/lib/bootstrap/css/bootstrap.min.css" />
|
|
<style>
|
|
body { background: #f0f2f5; font-family: 'Segoe UI', sans-serif; }
|
|
.success-card { max-width: 460px; margin: 80px auto; background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.10); padding: 40px; text-align: center; }
|
|
.check-icon { font-size: 3.5rem; margin-bottom: 12px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="success-card">
|
|
<div class="check-icon">✅</div>
|
|
<h1 class="h4 fw-bold mb-2">Payment Received</h1>
|
|
<p class="text-muted">Thank you! Your payment was successfully processed. You'll receive a confirmation email shortly.</p>
|
|
<hr />
|
|
<p class="text-muted small mb-0">You may close this window.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|