Browse Source

Merge pull request #1748 from gaetan-petit/patch-1

Update deprecated references
pull/1750/head
Markus Unterwaditzer 9 years ago
parent
commit
1a7fd980f8
  1. 4
      docs/patterns/wtforms.rst

4
docs/patterns/wtforms.rst

@ -32,11 +32,11 @@ This is an example form for a typical registration page::
username = StringField('Username', [validators.Length(min=4, max=25)])
email = StringField('Email Address', [validators.Length(min=6, max=35)])
password = PasswordField('New Password', [
validators.Required(),
validators.DataRequired(),
validators.EqualTo('confirm', message='Passwords must match')
])
confirm = PasswordField('Repeat Password')
accept_tos = BooleanField('I accept the TOS', [validators.Required()])
accept_tos = BooleanField('I accept the TOS', [validators.DataRequired()])
In the View
-----------

Loading…
Cancel
Save