Deploy Ladill Hosting / deploy (push) Successful in 49s
Standardize customer-facing Ladill Pay checkout shells across products, open them on all viewports, and escape iframe callbacks back to the product flow.
28 lines
822 B
PHP
28 lines
822 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Payment</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; background: #f8fafc; color: #0f172a; display: grid; place-items: center; min-height: 100vh; margin: 0; }
|
|
p { font-size: 0.95rem; color: #475569; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Confirming your payment…</p>
|
|
<script>
|
|
(function () {
|
|
var url = @json($redirect);
|
|
try {
|
|
if (window.top && window.top !== window.self) {
|
|
window.top.location.replace(url);
|
|
return;
|
|
}
|
|
} catch (e) {}
|
|
window.location.replace(url);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|