diff options
author | Prabhu Ramachandran | 2011-11-10 16:34:17 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-10 16:34:17 +0530 |
commit | 30f005126c97121548cc1d453997933482bd33a8 (patch) | |
tree | 3e7b0c029b9fa0b0724fce0abc3d2503a883d2b7 /exam/forms.py | |
parent | d5cd760142772eb91d3c9ce01b3ae8ea86d160da (diff) | |
download | online_test-30f005126c97121548cc1d453997933482bd33a8.tar.gz online_test-30f005126c97121548cc1d453997933482bd33a8.tar.bz2 online_test-30f005126c97121548cc1d453997933482bd33a8.zip |
ENH: Adding email address to registration form.
Diffstat (limited to 'exam/forms.py')
-rw-r--r-- | exam/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exam/forms.py b/exam/forms.py index bd5732e..164e334 100644 --- a/exam/forms.py +++ b/exam/forms.py @@ -6,7 +6,7 @@ class UserRegisterForm(forms.ModelForm): first_name = forms.CharField(max_length=30) last_name = forms.CharField(max_length=30) roll_number = forms.CharField(max_length=30) - #email_address = forms.EmailField() + email_address = forms.EmailField() #password = forms.CharField(max_length=30, widget=forms.PasswordInput()) class Meta: |