mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Don't show the user's password when registering.
(imported from commit 9268c07560de744abdedf11b8d39cd8045baeff9)
This commit is contained in:
		@@ -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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user