mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
Don't show the user's password when registering.
(imported from commit 9268c07560de744abdedf11b8d39cd8045baeff9)
This commit is contained in:
parent
e9ae8b0e0d
commit
ebff1bc830
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user