Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions resources/views/get-started.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,27 @@
</div>

<h2 class="min-w-0 text-sm font-semibold leading-6 text-white">
<a href="{{ url('/admin') }}" class="flex gap-x-2">
<span class="truncate">Sign In</span>
<span class="text-amber-400">/</span>
<span class="whitespace-nowrap">Admin Panel</span>
<span class="absolute inset-0"></span>
</a>
@auth
<a href="{{ url('/admin') }}" class="flex gap-x-2">
<span class="truncate">Dashboard</span>
<span class="text-amber-400">/</span>
<span class="whitespace-nowrap">Admin Panel</span>
<span class="absolute inset-0"></span>
</a>
@else
<a href="{{ url('/admin/login') }}" class="flex gap-x-2">
<span class="truncate">Sign In</span>
<span class="text-amber-400">/</span>
<span class="whitespace-nowrap">Admin Panel</span>
<span class="absolute inset-0"></span>
</a>
@endauth
</h2>
</div>

<div class="mt-3 flex items-center gap-x-2.5 text-sm leading-5 dark:text-gray-400 text-gray-950">
<p class="truncate">
Sign in to the admin panel to run your first speedtest or to setup scheduled tests.
Access the admin panel to run your first speedtest or to setup scheduled tests.
</p>
</div>
</div>
Expand Down