% @page_title = @user.name %>
<% content_for :header do %>
<% end %>
<%= turbo_frame_tag dom_id(@user) do %>
<%= image_tag user_avatar_path(@user), alt: "Profile avatar for #{@user.name}", class: "avatar", size: 128 %>
<%= @user.name %>
<% if @user.active? %>
<%= mail_to @user.email_address %>
<% else %>
<%= @user.name %> is no longer on this account
<% end %>
<% end %>
<% if Current.user == @user %>
<%= render "users/transfer", user: @user %>
<%= button_to session_path, method: :delete, class: "btn center txt-medium" do %>
<%= image_tag "logout.svg", aria: { hidden: true }, size: 24 %>
Sign out
<% end %>
<% end %>