I\'m using Django 1.5 & Python 3.2.3.
I\'ve got a custom Auth setup, which uses an email address instead of a username. There\'s no username def
You need to create your form from sctratch, it should not extend the UserCreationForm. The UserCreationForm have a username field explicitly defined in it as well as some other fields. You can look at it here.