I set the auth.settings.register_next = '/myapp/default/myinfo' After Registration the browser was redirected to myinfo screen but at the browser address bar there is: /#/, I expect to be: '/myapp/default/myinfo'
Now when I fill out the form and hit Submit the line: if form.process(formname='myinfo').accepted: is not hit and the form cannot process the data and store them in the database. If I hit /myapp/default/myinfo directly or via direct link the form works as expected. What is wrong?

