realpython / flask-boilerplate

Boilerplate template for a Python Flask application with Flask-SQLAlchemy, Flask-WTF, Fabric, Coverage, and Bootstrap
http://www.flaskboilerplate.com
Apache License 2.0
1.54k stars 537 forks source link

Password field name in form #4

Closed sventhondyke closed 11 years ago

sventhondyke commented 11 years ago

In the register.html template:

<td>{{ form.password.label }}{{ form.passwd }}&nbsp;&nbsp;</td>

should be

<td>{{ form.password.label }}{{ form.password }}&nbsp;&nbsp;</td>