8.7 released—WinterCG Compliance Part 1
Learn more
LoginOptions
interface LoginOptions extends ConfirmOptions {
  password: string;
  passwordHint: string;
  userName: string;
  userNameHint: string;
}
Provides options for the login dialog.

Summary

Properties

password
passwordHint
userName
userNameHint
2 properties inherited from CancelableOptions
Click to expand
2 properties inherited from ConfirmOptions
Click to expand
2 properties inherited from DialogOptions
Click to expand
1 properties inherited from AlertOptions
Click to expand

Properties

password

password?: string
Gets or sets the default text to display in the password input box.

passwordHint

passwordHint?: string
Gets or sets the default text to display as hint in the password input box.

userName

userName?: string
Gets or sets the default text to display in the user name input box.

userNameHint

userNameHint?: string
Gets or sets the default text to display as hint in the user name input box.
Previous
LoadOptions