Python wtforms.fields.PasswordField() Examples
The following are 4
code examples of wtforms.fields.PasswordField().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wtforms.fields
, or try the search function
.
Example #1
Source File: testauth.py From evesrp with BSD 2-Clause "Simplified" License | 5 votes |
def form(self): class TestLoginForm(Form): username = StringField(u'Username', validators=[InputRequired()]) password = PasswordField(u'Password', validators=[InputRequired()]) submit = SubmitField(u'Log In using {}'.format(self.name)) return TestLoginForm
Example #2
Source File: views.py From submission with MIT License | 5 votes |
def scaffold_form(self): # Start with the standard form as provided by Flask-Admin. We've already told Flask-Admin to exclude the # password field from this form. form_class = super(UserAdmin, self).scaffold_form() # Add a password field, naming it "password2" and labeling it "New Password". form_class.password2 = PasswordField('New Password') return form_class # This callback executes when the user saves changes to a newly-created or edited User -- before the changes are # committed to the database.
Example #3
Source File: views.py From pygameweb with BSD 2-Clause "Simplified" License | 5 votes |
def scaffold_form(self): form_class = super(UserAdmin, self).scaffold_form() form_class.password2 = PasswordField('New Password') return form_class
Example #4
Source File: user_admin.py From flask-react-spa with MIT License | 5 votes |
def get_create_form(self): CreateForm = super().get_create_form() CreateForm.email = html5.EmailField( 'Email', validators=[ validators.DataRequired(), validators.Email(), unique_user_email, ], ) CreateForm.password = fields.PasswordField( 'Password', validators=[ validators.DataRequired(), password_length, ], ) CreateForm.confirm_password = fields.PasswordField( 'Confirm Password', validators=[ validators.DataRequired(), EqualTo('password', message='RETYPE_PASSWORD_MISMATCH'), ], ) CreateForm.field_order = ( 'username', 'email', 'first_name', 'last_name', 'password', 'confirm_password', 'roles', 'active') return CreateForm