mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
15 lines
375 B
Plaintext
15 lines
375 B
Plaintext
<%
|
|
header_title t(".title")
|
|
header_description t(".description")
|
|
%>
|
|
|
|
<%= styled_form_with url: verify_mfa_path, method: :post, class: "space-y-4", data: { turbo: false } do |form| %>
|
|
<%= form.text_field :code,
|
|
required: true,
|
|
autofocus: true,
|
|
autocomplete: "one-time-code",
|
|
label: t(".page_title") %>
|
|
|
|
<%= form.submit t(".verify_button") %>
|
|
<% end %>
|