@okta/okta-signin-widget
Version:
The Okta Sign-In Widget
15 lines (13 loc) • 553 B
JavaScript
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);
},
},
});