scinote-web/app/views/users/sessions/two_factor_auth.html.erb

22 lines
981 B
Plaintext
Raw Normal View History

2020-06-30 20:16:00 +08:00
<% provide(:head_title, t("devise.sessions.new.head_title")) %>
<% content_for(:body_class, 'sign-in-layout') %>
<div class="sign-in-container">
<div class="sign-in-form-wrapper">
<div class="center-block center-block-narrow">
<h1 class="log-in-title"><%=t "devise.sessions.2fa.title" %></h1>
<%= form_with url: users_authenticate_with_two_factor_url, local: true do %>
<div class="input-group sci-input-container">
<%= label :otp, t("devise.sessions.2fa.field") %>
<%= text_field_tag(:otp, '', { class: "form-control sci-input-field", placeholder: t("devise.sessions.2fa.placeholder") })%>
</div>
<div class="actions" style="margin-top: 10px; margin-bottom: 10px;">
<%= button_tag t("devise.sessions.new.submit"), type: :submit, class: "btn btn-primary log-in-button" %>
</div>
2020-07-13 15:51:04 +08:00
<%= link_to 'I have a bypass code', users_two_factor_recovery_path %>
2020-06-30 20:16:00 +08:00
<% end %>
</div>
</div>
</div>