> Can you please post the list of steps to reproduce? We will fix it asap.
>
I extended the auth_user table with username:
auth.settings.extra_fields['auth_user']= [
Field('username', length=32, default='', requires=[IS_LENGTH(32,
error_message='Lengte overschreidt 32 tekens'),
IS_NOT_EMPTY(error_message='Vul gebruikersnaam in'), IS_NOT_IN_DB(db,
'auth_user.username', error_message='Gebruikersnaam al in database')],
notnull=True, unique=True, label='Gebruikersnaam * ', writable=False,
readable=False)]
In the default/user view I have the following link:
<a href="{{=URL(args='request_reset_password')}}">Reset password</a>
When I click the link, enter my username in the form and submits the form,
I get a
mail with the following link:
https://www.leonexus.nl/my/default/user/reset_password/1436942252-fffb0ed4-dec2-4ae6-93a1-19355abc13ac
<http://127.0.0.1:8000/my/default/user/reset_password/1436942252-fffb0ed4-dec2-4ae6-93a1-19355abc13ac>
When I click the link I am redirected to /my/default/user/login and the
flash displays the message:
"invalid reset password"
I hope I provided sufficient information to fix the issue.
Kind regards,
Annet
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
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/d/optout.