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

29 lines
776 B
PHP

{{-- resources/views/web/auth/danal_autosubmit.blade.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>
<div style="padding:16px;font-family:sans-serif;">
본인인증 페이지로 이동 중입니다. 잠시만 기다려 주세요…
</div>
<form id="danalAutoSubmitForm" method="post" action="{{ $action }}">
@foreach(($fields ?? []) as $k => $v)
<input type="hidden" name="{{ $k }}" value="{{ $v }}">
@endforeach
<noscript>
<button type="submit">계속</button>
</noscript>
</form>
<script>
document.getElementById('danalAutoSubmitForm').submit();
</script>
</body>
</html>