summaryrefslogtreecommitdiff
path: root/exam/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'exam/forms.py')
-rw-r--r--exam/forms.py2
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: