<%= t(".title") %>
<%= form_tag otp_challenge_path, :method => :post, :class => "otp_form" do %>
<%= label_tag :code, t(".code") %>
<%= text_field_tag :code, nil, :autofocus => true,
:autocomplete => "one-time-code", :inputmode => "numeric",
:maxlength => 6, :pattern => "[0-9]{6}", :class => "otp_code" %>
<%= t(".hint") %>
<%= button_tag :type => "submit", :class => "action_button" do %>
<%= icon("shield-check", library: "tabler", "aria-hidden": true) %> <%= t(".log_in") %>
<% end %>
<% end %>