Files
sure/app/views/mfa/verify.html.erb
neo773 04ee1e73be Fix dark mode support and improve notification/MFA UI (#2126)
* Fix dark mode support and improve notification/MFA UI"

* hide auth tabs on mfa/verify
2025-04-18 13:56:44 -05:00

16 lines
408 B
Plaintext

<%
header_title t(".title")
header_description t(".description")
%>
<%= styled_form_with url: verify_mfa_path, method: :post, class: "space-y-4 mt-4 md:mt-0", data: { turbo: false } do |form| %>
<%= form.text_field :code,
required: true,
autofocus: true,
autocomplete: "one-time-code",
type: "number",
label: t(".page_title") %>
<%= form.submit t(".verify_button") %>
<% end %>