mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			184 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			184 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django import forms
 | |
| 
 | |
| class RegistrationForm(forms.Form):
 | |
|     username = forms.CharField(max_length=100)
 | |
|     password = forms.CharField(widget=forms.PasswordInput, max_length=100)
 |