Browse Source

Improve TOTP token and recovery input fields in OAuth login

chores/our-libs-hex-releases
Mark Felder 4 years ago
parent
commit
3be64556db
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex
  2. +1
    -1
      lib/pleroma/web/templates/o_auth/mfa/totp.html.eex

+ 1
- 1
lib/pleroma/web/templates/o_auth/mfa/recovery.html.eex View File

@@ -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 %>


+ 1
- 1
lib/pleroma/web/templates/o_auth/mfa/totp.html.eex View File

@@ -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, maxlength: 6, pattern: "[0-9]{6}", spellcheck: false] %>
<%= hidden_input f, :mfa_token, value: @mfa_token %>
<%= hidden_input f, :state, value: @state %>
<%= hidden_input f, :redirect_uri, value: @redirect_uri %>


Loading…
Cancel
Save