>
> if form.accepts(request.vars, session, onvalidation=status_checker):
>     redirect(URL("index"))
>

This would not be a good user experience. A user who isn't logged in would 
fill out and submit the form, and upon submission they would end up being 
redirected to the login page, but their form submission would be lost. Even 
worse, they would not know it was lost. It's probably best to get them to 
log in before they waste time filling out a form (particularly if they're 
not even registered yet).

Anthony 

Reply via email to