mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 05:51:37 +01:00
656a41db2a
Conflicts: - `README.md`: Upstream has updated its README, we have a completely different one. Kept ours. - `app/views/auth/sessions/two_factor.html.haml`: Upstream refactored stuff and the conflict is because of glitch-soc's theming system. Ported upstream changes while accounting for the different theming system.
7 lines
296 B
Text
7 lines
296 B
Text
- content_for :page_title do
|
|
= t('auth.login')
|
|
|
|
- if webauthn_enabled?
|
|
= render partial: 'auth/sessions/two_factor/webauthn_form', locals: { hidden: @scheme_type != 'webauthn' }
|
|
|
|
= render partial: 'auth/sessions/two_factor/otp_authentication_form', locals: { hidden: @scheme_type != 'totp' }
|