[Answered ]-Password Input in django form hosted on google app engine not working

2👍

PasswordInput is a widget, not a field:

password = forms.CharField(widget=forms.PasswordInput)

Leave a comment