29 lines
776 B
PHP
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>
|