<%= content_for :content do %>
<%= image_tag "logo-color.png", class: "w-16 mb-6" %>

<%= content_for?(:header_title) ? yield(:header_title).html_safe : t(".your_account") %>

<% if controller_name == "sessions" %>

<%= tag.span t(".no_account"), class: "text-gray-500" %> <%= link_to t(".sign_up"), new_registration_path, class: "font-medium text-gray-900 hover:underline transition" %>

<% elsif controller_name == "registrations" %>

<%= t(".existing_account") %> <%= link_to t(".sign_in"), new_session_path, class: "font-medium text-gray-900 hover:underline transition" %>

<% end %>
<%= yield %>
<%= render "layouts/footer" %>
<% end %> <%= render template: "layouts/application" %>