resq/templates/paymongo/success.html.twig
2023-09-20 06:08:00 +08:00

22 lines
No EOL
443 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Successful</title>
<style>
body {
background-color: #333;
}
</style>
</head>
<body>
<script>
window.addEventListener('load', (e) => {
if (typeof toApp !== 'undefined') {
toApp.postMessage("paymentSuccess");
}
});
</script>
</body>
</html>