Don't show the user's password when registering.

(imported from commit 9268c07560de744abdedf11b8d39cd8045baeff9)
This commit is contained in:
Luke Faraone
2012-09-05 10:20:39 -04:00
parent e9ae8b0e0d
commit ebff1bc830

View File

@@ -2,4 +2,4 @@ from django import forms
class RegistrationForm(forms.Form):
username = forms.CharField(max_length=100)
password = forms.CharField(max_length=100)
password = forms.CharField(widget=forms.PasswordInput, max_length=100)