make 2fa UI less awful
[akkoma] / lib / pleroma / web / templates / o_auth / mfa / totp.html.eex
1 <div>
2 <%= if get_flash(@conn, :info) do %>
3 <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
4 <% end %>
5 <%= if get_flash(@conn, :error) do %>
6 <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
7 <% end %>
8 <div class="panel-heading">
9 <%= Gettext.dpgettext("static_pages", "mfa auth page title", "Two-factor authentication") %>
10 </div>
11 <div class="panel-content">
12 <%= form_for @conn, Routes.mfa_verify_path(@conn, :verify), [as: "mfa"], fn f -> %>
13 <div class="input">
14 <%= label f, :code, Gettext.dpgettext("static_pages", "mfa auth code prompt", "Authentication code") %>
15 <%= text_input f, :code, [autocomplete: "one-time-code", autocorrect: "off", autocapitalize: "off", autofocus: true, pattern: "[0-9]*", spellcheck: false] %>
16 <%= hidden_input f, :mfa_token, value: @mfa_token %>
17 <%= hidden_input f, :state, value: @state %>
18 <%= hidden_input f, :redirect_uri, value: @redirect_uri %>
19 <%= hidden_input f, :challenge_type, value: "totp" %>
20 </div>
21
22 <%= submit Gettext.dpgettext("static_pages", "mfa auth verify code button", "Verify") %>
23 <% end %>
24 <a href="<%= Routes.mfa_path(@conn, :show, %{challenge_type: "recovery", mfa_token: @mfa_token, state: @state, redirect_uri: @redirect_uri}) %>">
25 <%= Gettext.dpgettext("static_pages", "mfa auth page use recovery code link", "Enter a two-factor recovery code") %>
26 </a>
27 </div>
28 </div>