@okta/okta-signin-widget
Version:
The Okta Sign-In Widget
27 lines (19 loc) • 796 B
JavaScript
import { loc } from '@okta/courage';
import EnrollAuthenticatorPasswordView from './EnrollAuthenticatorPasswordView';
const Body = EnrollAuthenticatorPasswordView.prototype.Body.extend({
className: 'password-authenticator',
title() {
const title = this.options.settings.get('brandName')?
loc('password.expired.title.specific', 'login', [this.options.settings.get('brandName')]):
loc('password.expired.title.generic', 'login');
return title;
},
save() {
return loc('password.expired.submit', 'login');
},
getPasswordPolicySettings() {
return this.options.appState.get('recoveryAuthenticator')?.settings
|| this.options.appState.get('enrollmentAuthenticator')?.settings;
},
});
export default EnrollAuthenticatorPasswordView.extend({ Body });