<% if current_user %> <%= link_to current_user.main_room, class: "header-brand" do %> <%= image_tag("logo_with_text.png", class: "header-brand-img") %> <% end %> <% else %> <%= link_to root_path, class: "header-brand" do %> <%= image_tag("logo_with_text.png", class: "header-brand-img") %> <% end %> <% end %>
<% if current_user %>   Create Room <% else %> <%= link_to "Login", "#loginModal", :class => "btn btn-pill btn-outline-primary mx-2", "data-toggle": "modal" %> <% if allow_user_signup? %> <%= link_to "Signup", signup_path, :class => "btn btn-pill btn-outline-primary mx-2" %> <% end %> <%= render "shared/modals/login_modal" %> <% end %>