diff options
| -rw-r--r-- | lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex | 2 | ||||
| -rw-r--r-- | lib/pleroma/web/templates/o_auth/mfa/totp.html.eex | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex b/lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex index 750f65386..5ab59b57b 100644 --- a/lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex +++ b/lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex @@ -10,7 +10,7 @@  <%= form_for @conn, mfa_verify_path(@conn, :verify), [as: "mfa"], fn f -> %>  <div class="input">    <%= label f, :code, "Recovery code" %> -  <%= text_input f, :code %> +  <%= text_input f, :code, [autocomplete: false, autocorrect: "off", autocapitalize: "off", autofocus: true, spellcheck: false] %>    <%= hidden_input f, :mfa_token, value: @mfa_token %>    <%= hidden_input f, :state, value: @state %>    <%= hidden_input f, :redirect_uri, value: @redirect_uri %> diff --git a/lib/pleroma/web/templates/o_auth/mfa/totp.html.eex b/lib/pleroma/web/templates/o_auth/mfa/totp.html.eex index af6e546b0..af85777eb 100644 --- a/lib/pleroma/web/templates/o_auth/mfa/totp.html.eex +++ b/lib/pleroma/web/templates/o_auth/mfa/totp.html.eex @@ -10,7 +10,7 @@  <%= form_for @conn, mfa_verify_path(@conn, :verify), [as: "mfa"], fn f -> %>  <div class="input">    <%= label f, :code, "Authentication code" %> -  <%= text_input f, :code %> +  <%= text_input f, :code, [autocomplete: false, 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 %> | 
