bookclub-manager/resources/views/oauth.blade.php

13 lines
332 B
PHP

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<title>{{ config('app.name') }}</title>
<script>
window.opener.postMessage(JSON.parse('{!! json_encode($message) !!}'), '{{ config("app.frontend_url") }}');
window.close();
</script>
</head>
<body>
{{ __('Redirecting...') }}
</body>
</html>