mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			203 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			203 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django import forms
 | 
						|
 | 
						|
class EnterpriseToSForm(forms.Form):
 | 
						|
    full_name = forms.CharField(max_length=100)
 | 
						|
    company = forms.CharField(max_length=100)
 | 
						|
    terms = forms.BooleanField(required=True)
 |