Make RailsGoat logo clickable on unauthenticated pages

Changed the logo from a non-interactive <span> to a clickable <a> link
pointing to the login page for unauthenticated users. This provides a
consistent navigation pattern across authenticated and unauthenticated
states.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ken Johnson
2025-12-07 02:02:52 -05:00
parent be5d229e4e
commit 9e22cee22c
+2 -2
View File
@@ -72,9 +72,9 @@
<div class="container-fluid h-100"> <div class="container-fluid h-100">
<div class="row h-100 align-items-center"> <div class="row h-100 align-items-center">
<div class="col-auto"> <div class="col-auto">
<span class="rg-brand"> <a href="<%= login_path %>" class="rg-brand">
<i class="bi bi-shield-fill-exclamation"></i> RailsGoat <i class="bi bi-shield-fill-exclamation"></i> RailsGoat
</span> </a>
</div> </div>
<div class="col"></div> <div class="col"></div>