giftcon_dev/resources/views/web/auth/danal_finish_top.blade.php
2026-01-26 12:59:59 +09:00

33 lines
717 B
PHP

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>처리 결과</title>
</head>
<body>
<script>
(function () {
var ok = @json($ok ?? false);
var message = @json($message ?? '');
var redirect = @json($redirect ?? '/');
if (message) {
alert(message);
}
try {
if (window.top) window.top.location.href = redirect;
else window.location.href = redirect;
} catch (e) {
window.location.href = redirect;
}
})();
</script>
<noscript>
<a href="{{ $redirect }}">계속</a>
</noscript>
</body>
</html>