about summary refs log tree commit diff
path: root/app/views/settings/two_factor_authentication/webauthn_credentials/index.html.haml
blob: 0dfd94ab9dcf58e93b50986f7865c2d11b829da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- content_for :page_title do
  = t('settings.webauthn_authentication')

.table-wrapper
  %table.table
    %tbody
      - current_user.webauthn_credentials.each do |credential|
        %tr
          %td= credential.nickname
          %td= t('webauthn_credentials.registered_on', date: l(credential.created_at.to_date, format: :with_month_name))
          %td
            = table_link_to 'trash', t('webauthn_credentials.delete'), settings_webauthn_credential_path(credential.id), method: :delete, data: { confirm: t('webauthn_credentials.delete_confirmation') }

%hr.spacer/

.simple_form
  = link_to t('webauthn_credentials.add'), new_settings_webauthn_credential_path, class: 'block-button'