<%= render "layouts/shared/htmldoc" 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-secondary" %> <%= link_to t(".sign_up"), new_registration_path, class: "font-medium text-primary hover:underline transition" %>

<% elsif controller_name == "registrations" %>

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

<% end %>
<%= yield %>
<%= render "layouts/shared/footer" %>
<% end %>