TOTP length is configurable, so we can't hardcode this here.
authorMark Felder <feld@FreeBSD.org>
Fri, 17 Jul 2020 13:19:49 +0000 (08:19 -0500)
committerMark Felder <feld@FreeBSD.org>
Fri, 17 Jul 2020 13:19:49 +0000 (08:19 -0500)
lib/pleroma/web/templates/o_auth/mfa/totp.html.eex

index 8323ff8a1ed7adfc57aeb0a18e6cff14e50a379e..af85777ebb6117f78768da25b6868833de81e8c7 100644 (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, [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 %>