summaryrefslogtreecommitdiff
path: root/app/views/otp_challenges/new.html.erb
blob: 798fc024a0db1039d5815b5f8cefd808d596fdc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<h1><%= t(".title") %></h1>

<div id="admin_layout">
  <div class="layout_row">
    <div class="layout_row_label"> <%= t(".code") %> </div>
    <div class="layout_row_content">
      <%= form_tag otp_challenge_path, :method => :post, :class => "otp_form" do %>
        <%= text_field_tag :code, nil, :autofocus => true,
              :autocomplete => "one-time-code", :inputmode => "numeric" %>
        <%= submit_tag t(".log_in") %>
      <% end %>
      <span class="field_hint"> <%= t(".hint") %> </span>
    </div>
  </div>
</div>