Add an "I agree to the terms of use" checkbox inside signup workflow.

(imported from commit 6d3320e71e189f4577da464fade9c8f7f5838f78)
This commit is contained in:
Waseem Daher
2012-10-25 15:04:46 -04:00
parent 0c54fab1e2
commit 29d94b60b6
3 changed files with 26 additions and 9 deletions

View File

@@ -17,6 +17,7 @@ class RegistrationForm(forms.Form):
full_name = forms.CharField(max_length=100)
password = forms.CharField(widget=forms.PasswordInput, max_length=100)
domain = forms.CharField(max_length=100)
terms = forms.BooleanField(required=True)
class HomepageForm(forms.Form):
email = UniqueEmailField()