Hi,
We've got a custom layout for our login page using a view with all the
needed ("{=form.custom.widget.email}}") code elements. On the previous
version of Web2Py everything worked nicely on Internet Explorer, Chrome and
FireFox.
After upgrading to 2.4.2 logging in to our project only works on Internet
Explorer...
Having a look at the generated form this is the result of the opening form
tag:
<form method="post" enctype="multipart/form-data" action="#"
autocomplete="off">
The # is causing all the pain... When I remove the # in FireBug and press
submit the form is working as expected!
The solution seems simple, just remove the # so everything looks as it was
before:
<form method="post" enctype="multipart/form-data" action=""
autocomplete="off">
Is it possible not to generate the # into the action attribute?
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.