TESSA Web API
    Preparing search index...

    Interface IUserLoginTypeOptions

    interface IUserLoginTypeOptions {
        emptyPasswordText?: null | string;
        loginCaption?: null | string;
        loginIsAbsentText?: null | string;
        passwordIsAbsentText?: null | string;
        repeatPasswordErrorText?: null | string;
        repeatPasswordText?: null | string;
        specifyNewPasswordText?: null | string;
        specifyOldPasswordText?: null | string;
    }
    Index

    Properties

    emptyPasswordText?: null | string

    Text to show in the UI when user is required to specify the new password in change password dialog. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.

    loginCaption?: null | string

    Caption to show in the UI for login (account name). Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseLogin is specified.

    loginIsAbsentText?: null | string

    Warning text to show in the UI when login (account name) is absent in the employee card. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseLogin is specified.

    passwordIsAbsentText?: null | string

    Warning text to show in the UI when password is absent in the employee card. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.

    repeatPasswordErrorText?: null | string

    Warning text to show in the UI when original password and its repeated version doesn't match in the employee card. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.

    repeatPasswordText?: null | string

    Text to show in the UI when user is required to repeat the password in the employee card. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.

    specifyNewPasswordText?: null | string

    Text to show in the UI when user is required to specify the new password in change password dialog. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.

    specifyOldPasswordText?: null | string

    Text to show in the UI when user is required to specify the current password in change password dialog. Can be localization string, or null/undefined/empty string if default message is shown. Used when flag UserLoginTypeFlags.UseInternalPassword is specified.