Fixed WTForms example.
This commit is contained in:
parent
9f0b2429d6
commit
1404a85bc5
1 changed files with 3 additions and 3 deletions
|
|
@ -22,9 +22,9 @@ This is an example form for a typical registration page::
|
||||||
class RegistrationForm(Form):
|
class RegistrationForm(Form):
|
||||||
username = TextField('Username', [validators.Length(min=4, max=25)])
|
username = TextField('Username', [validators.Length(min=4, max=25)])
|
||||||
email = TextField('Email Address', [validators.Length(min=6, max=35)])
|
email = TextField('Email Address', [validators.Length(min=6, max=35)])
|
||||||
password = PasswordField('New Password', [Required(),
|
password = PasswordField('New Password', [validators.Required()])
|
||||||
EqualTo('confirm', message='Passwords must match')])
|
confirm = PasswordField('Repeat Password', [validators.EqualTo(
|
||||||
confirm = PasswordField('Repeat Password')
|
'confirm', message='Passwords must match')])
|
||||||
accept_tos = BooleanField('I accept the TOS', [validators.Required()])
|
accept_tos = BooleanField('I accept the TOS', [validators.Required()])
|
||||||
|
|
||||||
In the View
|
In the View
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue