redirect.blade.php 647 B

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