Move enterprise-registration to zilencer/ from zerver/

(imported from commit d8a58913040376dbdbc9dcee13ab8a7910733da7)
This commit is contained in:
Kevin Mehall
2013-11-14 13:31:24 -05:00
parent fce97df972
commit 53c76aa657
8 changed files with 36 additions and 30 deletions

6
zilencer/forms.py Normal file
View File

@@ -0,0 +1,6 @@
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)