<%= Gettext.dpgettext("static_pages", "mfa auth page title", "Two-factor authentication") %>
  
  
      <%= form_for @conn, ~p"/oauth/mfa/verify", [as: "mfa"], fn f -> %>
      
        <%= label f, :code, Gettext.dpgettext("static_pages", "mfa auth code prompt", "Authentication code") %>
        <%= text_input f, :code, [autocomplete: "one-time-code", autocorrect: "off", autocapitalize: "off", autofocus: true, pattern: "[0-9]*", spellcheck: false] %>
        <%= hidden_input f, :mfa_token, value: @mfa_token %>
        <%= hidden_input f, :state, value: @state %>
        <%= hidden_input f, :redirect_uri, value: @redirect_uri %>
        <%= hidden_input f, :challenge_type, value: "totp" %>
      
      <%= submit Gettext.dpgettext("static_pages", "mfa auth verify code button", "Verify") %>
      <% end %>
      
">
        <%= Gettext.dpgettext("static_pages", "mfa auth page use recovery code link", "Enter a two-factor recovery code") %>