aboutsummaryrefslogtreecommitdiff
path: root/resources/views
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2024-07-11 22:25:32 +0100
committerFrankie B <git@diskfloppy.me>2024-07-11 22:25:32 +0100
commit3e4d1dfa4f2d32b0e975dae0c0d1d69ba69b9e02 (patch)
tree429a9d5bc91f319fe4382ea81f2add407d096b6b /resources/views
parent13584f1f7b0582ee96f1743d2ac5b89fc9ce6c53 (diff)
Remove admin links
Diffstat (limited to 'resources/views')
-rw-r--r--resources/views/components/layout.blade.php10
-rw-r--r--resources/views/components/navbar.blade.php3
2 files changed, 0 insertions, 13 deletions
diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php
index 1c0e14d..54fcf7a 100644
--- a/resources/views/components/layout.blade.php
+++ b/resources/views/components/layout.blade.php
@@ -24,16 +24,6 @@
<body onload="setSchemeSelector()">
<div class="page">
<div id="header" class="header">
- @if (auth()->check())
- <div class="banner red-banner">
- <div>
- <a href="/admin/guestbook">Guestbook</a>&nbsp;|
- <a href="/admin/bookmarks">Bookmarks</a> |
- <a href="/admin/import">Import</a>
- </div>
- <div><strong>Logged in as:</strong> {{ auth()->user()->name }} (<a href="/logout">logout</a>)</div>
- </div>
- @endif
<x-navbar title="{{ $title }}"/>
<hr>
</div> <!-- header -->
diff --git a/resources/views/components/navbar.blade.php b/resources/views/components/navbar.blade.php
index 475ebca..225bf16 100644
--- a/resources/views/components/navbar.blade.php
+++ b/resources/views/components/navbar.blade.php
@@ -11,8 +11,5 @@
<a href="//weather.diskfloppy.me/" title="Weather"><img class="pixel" src="/images/icons/nav/weather.png" alt="Weather" width="32" height="32"></a>
<a href="/music/" title="Music"><img class="pixel" src="/images/icons/nav/music.png" alt="Music" width="32" height="32"></a>&nbsp;&nbsp;
</div>
- <div>
- <a href="/login/" title="Admin Login"><img class="pixel" src="/images/icons/nav/admin.png" alt="Admin Login" width="32" height="32"></a>&nbsp;&nbsp;
- </div>
</div>
</nav>