summaryrefslogtreecommitdiff
path: root/app/views/devise/sessions/two_factor.html.haml
blob: a373f61bd3c7bd734eab5c67d63be20ee5c6384d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%div
  .login-box
    .login-heading
      %h3 Two-Factor Authentication
    .login-body
      - if @user.two_factor_otp_enabled?
        %h5 Authenticate via Two-Factor App
        = form_for(resource, as: resource_name, url: session_path(resource_name), method: :post) do |f|
          - resource_params = params[resource_name].presence || params
          = f.hidden_field :remember_me, value: resource_params.fetch(:remember_me, 0)
          = f.text_field :otp_attempt, class: 'form-control', placeholder: 'Two-Factor Authentication code', required: true, autofocus: true, autocomplete: 'off'
          %p.help-block.hint Enter the code from the two-factor app on your mobile device. If you've lost your device, you may enter one of your recovery codes.
          .prepend-top-20
            = f.submit "Verify code", class: "btn btn-save"

      - if @user.two_factor_u2f_enabled?

        %hr
        = render "u2f/authenticate"