logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

new.html.haml (743B)


  1. - content_for :page_title do
  2. = t('settings.two_factor_authentication')
  3. = simple_form_for @confirmation, url: settings_two_factor_authentication_confirmation_path, method: :post do |f|
  4. %p.hint= t('two_factor_authentication.instructions_html')
  5. .qr-wrapper
  6. .qr-code!= @qrcode.as_svg(padding: 0, module_size: 4)
  7. .qr-alternative
  8. %p.hint= t('two_factor_authentication.manual_instructions')
  9. %samp.qr-alternative__code= current_user.otp_secret.scan(/.{4}/).join(' ')
  10. = f.input :code, hint: t('two_factor_authentication.code_hint'), placeholder: t('simple_form.labels.defaults.otp_attempt'), input_html: { :autocomplete => 'off' }
  11. .actions
  12. = f.button :button, t('two_factor_authentication.enable'), type: :submit