27 lines
708 B
PHP
27 lines
708 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 message = @json($message ?? '', JSON_INVALID_UTF8_SUBSTITUTE);
|
|
var redirect = @json($redirect ?? '/', JSON_INVALID_UTF8_SUBSTITUTE);
|
|
|
|
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>
|