payment-success.html•1.91 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Successful - Better Prompts</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
</style>
</head>
<body class="bg-slate-50 flex flex-col items-center justify-center min-h-screen p-4 sm:p-6 antialiased">
<div class="w-full max-w-lg">
<div class="text-center mb-8">
<h1 class="text-2xl sm:text-3xl font-bold text-gray-800">MCP Boilerplate</h1>
</div>
<div class="mt-7 bg-white border border-gray-200 rounded-xl shadow-2xs">
<div class="p-5 sm:p-7">
<div class="text-center">
<h2 class="block text-xl sm:text-2xl font-bold text-green-600">Payment Successful!</h2>
</div>
<p class="mt-5 text-md text-gray-700 text-center">
Thank you! Your payment was processed successfully.
</p>
<p class="mt-2 text-md text-gray-700 text-center">
You can now access {{insert your features here}}.
</p>
<div class="mt-8">
<a href="/" class="w-full py-3 px-4 inline-flex justify-center items-center gap-x-2 text-sm font-medium rounded-lg border border-transparent bg-blue-600 text-white hover:bg-blue-700 disabled:opacity-50 disabled:pointer-events-none">
Go to Homepage
</a>
</div>
</div>
</div>
<div class="text-center mt-6">
<p class="text-xs text-gray-600">
If you have any questions, feel free to reach out to support.
</p>
</div>
</div>
</body>
</html>