~cytrogen/masto-fe

ref: 685270f3f7ea6d4a8a48ec641e8fdfd9fc2e2d7f masto-fe/app/views/auth/challenges/new.html.haml -rw-r--r-- 528 bytes
685270f3 — Claire [Glitch] Fix clicking “Explore” or “Live feeds” column headers to scroll in advanced mode 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- content_for :page_title do
  = t('challenge.prompt')

= simple_form_for @challenge, url: request.get? ? auth_challenge_path : '' do |f|
  = f.input :return_to, as: :hidden

  .field-group
    = f.input :current_password, wrapper: :with_block_label, input_html: { autocomplete: 'current-password', autofocus: true }, label: t('challenge.prompt'), required: true

  .actions
    = f.button :button, t('challenge.confirm'), type: :submit

  %p.hint.subtle-hint= t('challenge.hint_html')

.form-footer= render 'auth/shared/links'