<%= render 'shared/title' %>
<% if signed_in? %>
<% if Docuseal.demo? %> Sign Up <% else %>
<%= render 'shared/navbar_buttons' %> <%= link_to 'Settings', settings_profile_index_path, class: 'hidden md:inline-flex font-medium text-lg' %>
<% end %>
<% else %>
<% if request.path != new_user_session_path %> <%= link_to new_user_session_path, class: 'font-medium text-lg' do %> <%= svg_icon('login', class: 'w-6 h-6') %> Sign in <% end %> <% end %> <% if Docuseal.multitenant? && !request.path.in?([registration_path, new_registration_path]) %> <%= link_to registration_path, class: 'btn btn-neutral btn-sm btn-outline' do %> Sign Up <% end %> <% end %>
<% end %>