Get into Fizzy
<%= form_with url: session_path, class: "flex flex-column gap-half txt-medium" do |form| %>
<% if Account.accepting_signups? %>
New here? <%= link_to "Sign up", new_signup_path %> to create an account. Already have an account? Enter your email and we’ll get you signed in.
<% else %>
Enter your email and we’ll get you signed in.
<% end %>
<% end %>
<%= passkey_sign_in_button "Sign in with a passkey", session_passkey_path,
options: @authentication_options,
mediation: "conditional",
error: { class: "txt-negative margin-block-half" },
cancellation: { class: "txt-subtle margin-block-half" },
class: "btn btn--plain txt-link center txt-small" %>
<% content_for :footer do %>
<%= render "sessions/footer" %>
<% end %>