Remove "Sign up" and "Log in" from application bar when sessions or user controller are active

This commit is contained in:
Milan Cvetkovic 2024-03-05 15:00:44 +00:00
parent 9649b192c0
commit 2b4096e566

View file

@ -104,7 +104,7 @@
<%= link_to t("layouts.logout"), logout_path(:referer => request.fullpath), :method => "post", :class => "geolink dropdown-item" %>
</div>
</div>
<% else %>
<% elsif (controller_name != "users" and controller_name != "sessions") || action_name != "new" %>
<div class="d-inline-flex btn-group login-menu" role="">
<%= link_to t("layouts.log_in"), login_path(:referer => request.fullpath), :class => "geolink btn btn-outline-secondary" %>
<%= link_to t("layouts.sign_up"), user_new_path, :class => "btn btn-outline-secondary" %>