18 lines
416 B
PHP
Executable File
18 lines
416 B
PHP
Executable File
<h1 style="text-align: center">Logging in</h1>
|
|
|
|
<script>
|
|
let status = "{!! $status !!}";
|
|
let data = null;
|
|
|
|
@if(isset($data) && $data)
|
|
@if(json_decode($data))
|
|
data = {!! $data !!};
|
|
@else
|
|
data = '{!! $data !!}';
|
|
@endif
|
|
@endif
|
|
|
|
window.opener.postMessage({status: status, callbackData: data, type: 'social-auth'}, '*');
|
|
window.close();
|
|
</script>
|