Django 1.2 adds new allowable symbols to usernames, meaning usernames can simply be email addresses. Up until now I have been using the inbuilt UserCreationForm for registration - how can I alter it to label the 'username' field the 'email' field? And how also to add extra (but still User object) fields such as first and last names? (And how to make them optional?)
Should I be altering the UserCreationForm to this extent or am I better starting from scratch (and if the latter, how?)
Thanks.