PasswordField
Field of Model for enter password.
PasswordField
¶
Bases: Field
Field of Model for enter password.
Attention
Regular expression:^[-._!"`'#%&,:;<>=@{}~$()*+/\?[]^|a-zA-Z0-9]{8,256}$Valid characters:a-z A-Z 0-9 - . _ ! " ` ' # % & , : ; < > = @ { } ~ $ ( ) * + / \ ? [ ] ^ |Number of characters:from 8 to 256.
Source code in src/ramifice/fields/password_field.py
__init__(label='', placeholder='', is_hide=False, is_ignore=False, hint='', warning=[], is_require=False)
¶
Field of Model for enter password.
Attention
Regular expression:^[-._!"`'#%&,:;<>=@{}~$()*+/\?[]^|a-zA-Z0-9]{8,256}$Valid characters:a-z A-Z 0-9 - . _ ! " ` ' # % & , : ; < > = @ { } ~ $ ( ) * + / \ ? [ ] ^ |Number of characters:from 8 to 256.
Agrs
label: Text label for a web form field.
placeholder: Displays prompt text.
is_hide: Hide field from user.
is_ignore: If true, the value of this field is not saved in the database.
hint: An alternative for the placeholder parameter.
warning: Warning information.
is_require: Required field.