22 lines
No EOL
443 B
Twig
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> |