I wrote my own default.py file starting from scratch, but I retained the user() function:
def user():
return dict(form=auth())
Everything else in the file is new or modified.
The registration, login forms load fine, but I am unable to register a
new user. The page just seemed to reload and return to the same page.
Did I miss out anything?

