diff --git a/base/forms.py b/base/forms.py index de1994993..4d13f6adb 100644 --- a/base/forms.py +++ b/base/forms.py @@ -118,6 +118,6 @@ class LoginForm(AuthenticationForm): attrs={ 'class': 'form-control', 'name': 'username'})) password = forms.CharField(label="Password", max_length=30, - widget=forms.TextInput( + widget=forms.PasswordInput( attrs={ 'class': 'form-control', 'name': 'password'})) diff --git a/templates/base.html b/templates/base.html index 91233c5da..afcf8f209 100644 --- a/templates/base.html +++ b/templates/base.html @@ -103,7 +103,7 @@ -