<% url = join_url(Current.account.join_code) %>
<%= link_to_zoom_qr_code(url) do %>
Show join link QR code
<%= image_tag "qr-code.svg", aria: { hidden: "true" }, size: 20, class: "colorize--black" %>
<% end %>
<%= button_to_copy_to_clipboard(url) do %>
Copy join link
<%= image_tag "copy-paste.svg", aria: { hidden: "true" }, size: 20, class: "colorize--black" %>
<% end %>
<%= web_share_session_button(url, "Link to join Campfire", "Hit this link to join me in Campfire and start chatting.") do %>
Share join link
<%= image_tag "share.svg", aria: { hidden: "true" }, size: 20, class: "colorize--black" %>
<% end %>
<% if Current.user.can_administer? %>
<%= button_to account_join_code_path, class: "btn btn--regenerate" do %>
<%= image_tag "refresh.svg", aria: { hidden: "true" }, size: 20, class: "colorize--black" %>
Regenerate join link
<% end %>
<% end %>