Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « webauthn « authentication « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbf694c769835d799113fba84b205016a8c86c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import $ from 'jquery';
import WebAuthnAuthenticate from './authenticate';

export default () => {
  const webauthnAuthenticate = new WebAuthnAuthenticate(
    $('#js-authenticate-token-2fa'),
    '#js-login-token-2fa-form',
    gon.webauthn,
    document.querySelector('#js-login-2fa-device'),
    document.querySelector('.js-2fa-form'),
  );
  webauthnAuthenticate.start();
};