UNPKG

@okta/okta-signin-widget

Version:
15 lines (13 loc) 553 B
import { View } from '@okta/courage'; import { FORMS as RemediationForms } from '../../../ion/RemediationConstants'; import hbs from '@okta/handlebars-inline-precompile'; export default View.extend({ className: 'setup-webauthn-residentkey-text', template: hbs `<div>{{{i18n code="oie.enroll.webauthn.rk.link" bundle="login"}}}</div>`, events: { 'click .setup-webauthn-residentkey-link': function(e) { e.preventDefault(); this.options.appState.trigger('invokeAction', RemediationForms.ENROLL_WEBAUTHN_RESIDENTKEY); }, }, });