From ebff1bc830a108d4224d5d1cdaa6b553cb7eabbf Mon Sep 17 00:00:00 2001 From: Luke Faraone Date: Wed, 5 Sep 2012 10:20:39 -0400 Subject: [PATCH] Don't show the user's password when registering. (imported from commit 9268c07560de744abdedf11b8d39cd8045baeff9) --- zephyr/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/forms.py b/zephyr/forms.py index 0d19883d73..82e01a5079 100644 --- a/zephyr/forms.py +++ b/zephyr/forms.py @@ -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)