12345678910111213141516171819202122 |
- @extends('layouts.blank')
- @section('content')
- <div style="width:100%;height:100vh;" class="d-flex justify-content-center align-items-center">
- <div class="text-center">
- <img src="/img/pixelfed-icon-grey.svg">
- <p class="mt-3 py-4">Redirecting to <span class="font-weight-bold">{{$url}}</span></p>
- <div class="spinner-border text-lighter" role="status">
- <span class="sr-only">Loading...</span>
- </div>
- </div>
- </div>
- @endsection
- @push('scripts')
- <script type="text/javascript">
- window.history.replaceState({}, document.title, '/i/redirect');
- setTimeout(function() {
- window.location.href = '{{$url}}';
- }, 1500);
- </script>
- @endpush
|