<% if signed_in? %>
    
      <% if Docuseal.demo? %>
        
          Sign Up
        
        
          <%= render 'shared/github_button' %>
        
      <% else %>
        
          <% if can?(:manage, EncryptedConfig) && !can?(:manage, :tenants) %>
            <%= link_to Docuseal.multitenant? ? console_redirect_index_path : Docuseal::CONSOLE_URL, class: 'hidden md:inline-flex items-center font-medium text-lg', data: { prefetch: false } do %>
              Console
              New
            <% end %>
            
          <% end %>
          <%= link_to 'Settings', settings_profile_index_path, class: 'hidden md:inline-flex font-medium text-lg' %>
        
      <% end %>
      
        
        
          - 
            <%= link_to settings_profile_index_path, class: 'flex items-center' do %>
              <%= svg_icon('adjustments', class: 'w-5 h-5 stroke-2') %>
              Profile
            <% end %>
          <% if !Docuseal.demo? && can?(:manage, EncryptedConfig) %>
- 
              <%= link_to Docuseal.multitenant? ? console_redirect_index_path : Docuseal::CONSOLE_URL, data: { prefetch: false }, class: 'flex items-center' do %>
                <%= svg_icon('terminal', class: 'w-5 h-5 stroke-2') %>
                Console
              <% end %>
            <% end %>
          <% if can?(:read, EncryptedConfig.new(key: EncryptedConfig::ESIGN_CERTS_KEY, account: current_account)) %>
- 
              <%= link_to settings_esign_path, class: 'flex items-center' do %>
                <%= svg_icon('zoom_check', class: 'w-5 h-5 stroke-2') %>
                Verify PDF
              <% end %>
            <% end %>
- 
            <%= button_to destroy_user_session_path, method: :delete, data: { turbo: false }, class: 'flex items-center' do %>
              <%= svg_icon('logout', class: 'w-5 h-5 stroke-2 mr-2 inline') %>
              Sign out
            <% end %>
          
 
    
      <% 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 %>
          
            Create free Account
          
        <% end %>
      <% end %>
    
  <% end %>