login class
A control that lets users enter their username and password.
Methods¶
__init__() ¶
__init__(
title="Log in",
on_action=None,
message=None,
id=None,
properties=None,
class_name=None,
hover_text=None,
) -> None
Create a new login
element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
str
|
The title of the login dialog. |
Log in
|
|
Union[str, Callable]
|
A function or the name of a function that is triggered when the dialog button is pressed.
When the button is pressed, and if this property is not set, Taipy will try to find a callback function called on_login() and invoke it with the parameters listed above. |
None
|
|
str
|
The message shown in the dialog. |
None
|
|
str
|
The identifier that is assigned to the rendered HTML component. |
None
|
|
dict[str, Any]
|
Bound to a dictionary that contains additional properties for this element. |
None
|
|
str
|
The list of CSS class names that are associated with the generated HTML Element. |
None
|
|
str
|
The information that is displayed when the user hovers over this element. |
None
|