Additional Inherited Members |
| state |
Detailed Description
Definition at line 107 of file user.py.
Member Function Documentation
def wowf.forms.user.ChangePasswordForm.update_password |
( |
|
self, |
|
|
|
user |
|
) |
| |
def wowf.forms.user.ChangePasswordForm.validate_current_password |
( |
|
self, |
|
|
|
field |
|
) |
| |
User must know current password.
Definition at line 121 of file user.py.
def wowf.forms.user.ChangePasswordForm.validate_new_password |
( |
|
self, |
|
|
|
field |
|
) |
| |
New password must be different from current password.
Definition at line 129 of file user.py.
Member Data Documentation
tuple wowf.forms.user.ChangePasswordForm.confirm_new_password |
|
static |
Initial value:PasswordField('Verify password', [
validators.EqualTo('new_password', message='Passwords must match')])
Definition at line 114 of file user.py.
tuple wowf.forms.user.ChangePasswordForm.current_password |
|
static |
Initial value:PasswordField('Current password', [
validators.Required(message='Current password cannot be blank')])
Definition at line 109 of file user.py.
tuple wowf.forms.user.ChangePasswordForm.new_password |
|
static |
Initial value:PasswordField('New password', [
validators.Required(message='New password cannot be blank'),
validators.Length(min=6, max=15, message='New password must be between %(min)d and %(max)d characters')])
Definition at line 111 of file user.py.
The documentation for this class was generated from the following file: