aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-07-17 08:19:49 -0500
committerMark Felder <feld@FreeBSD.org>2020-07-17 08:19:49 -0500
commit62438530e24d9553b8c1240ad7a39ea0906832b9 (patch)
treee4f39acd9d27108f58950de76d8068253977cbc6
parent3be64556dbe5618de3429a481f41eff917053ce8 (diff)
downloadpleroma-62438530e24d9553b8c1240ad7a39ea0906832b9.tar.gz
TOTP length is configurable, so we can't hardcode this here.
-rw-r--r--lib/pleroma/web/templates/o_auth/mfa/totp.html.eex2
1 files changed, 1 insertions, 1 deletions
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 8323ff8a1..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, [autocomplete: false, autocorrect: "off", autocapitalize: "off", autofocus: true, maxlength: 6, pattern: "[0-9]{6}", spellcheck: false] %>
+ <%= 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 %>