diff --git a/RIGS/forms.py b/RIGS/forms.py index f3ee6870..83e9cd17 100644 --- a/RIGS/forms.py +++ b/RIGS/forms.py @@ -10,6 +10,8 @@ from RIGS import models #Registration class ProfileRegistrationFormUniqueEmail(RegistrationFormUniqueEmail): + first_name = forms.CharField(required=False, max_length=50) + last_name = forms.CharField(required=False, max_length=50) initials = forms.CharField(required=True, max_length=5) phone = forms.CharField(required=False, max_length=13)