forked from mirror/pixelfed
22 lines
647 B
PHP
22 lines
647 B
PHP
@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 |