From 91866b3a57e5b204216222cc8098a90c78dbca39 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 27 Aug 2015 01:48:10 +0100 Subject: [PATCH] Removed unnecessary username field definition --- RIGS/forms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/RIGS/forms.py b/RIGS/forms.py index faa57f76..0f019d18 100644 --- a/RIGS/forms.py +++ b/RIGS/forms.py @@ -12,7 +12,6 @@ from RIGS import models #Registration class ProfileRegistrationFormUniqueEmail(RegistrationFormUniqueEmail): - username = forms.CharField(required=True, max_length=30) 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)