Edit

kmx.io/kmxgit/lib/kmxgit_web/templates/user/totp.html.heex

Branch :

  • lib/kmxgit_web/templates/user/totp.html.heex
  • <div class="container-fluid">
      <h1><%= @page_title %></h1>
    
      <img src={@totp_enrolment_qrcode_src} alt="" class="qrcode" />
    
      <%= form_for @changeset, Routes.user_path(@conn, :totp_update, User.login(@user)), fn f -> %>
        <div class="mb-3">
          <%= label f, :totp_last, gettext("Token"), class: "form-label" %>
          <%= number_input f, :totp_last, class: "form-control" %>
          <%= error_tag f, :totp_last %>
        </div>
    
        <div class="mb-3">
          <%= submit gettext("Submit"), class: "btn btn-primary" %>
        </div>
      <% end %>
    </div>