mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 06:25:19 +02:00
14 lines
350 B
Text
14 lines
350 B
Text
|
<%
|
||
|
header_title t(".title")
|
||
|
header_description t(".description")
|
||
|
%>
|
||
|
|
||
|
<%= styled_form_with url: verify_mfa_path, method: :post, class: "space-y-4" do |form| %>
|
||
|
<%= form.text_field :code,
|
||
|
required: true,
|
||
|
autofocus: true,
|
||
|
autocomplete: "one-time-code",
|
||
|
label: t(".page_title") %>
|
||
|
|
||
|
<%= form.submit t(".verify_button") %>
|
||
|
<% end %>
|