Hello mate, I wonder if any one has the same issue with the retrieve_password() in tools
#Here is the controllers: def forgotPassword(): return dict(forgotPwdForm = auth.retrieve_password()) # Here is the view "forgotPassword.html" <h3>Forgot Your Password ? Please enter your email</h3> {{=forgotPwdForm}} # Here is the model auth.settings.table_user = db.define_table( auth.settings.table_user_name, db.Field('fullname', length=250, default=''), db.Field('email', length=128,default=''), db.Field('creationTime',type='datetime',default=now,writable=False), db.Field('password', 'password', readable=False,label='Password', requires=CRYPT()), db.Field('registration_key', length=128, writable=False, readable=False,default=''), db.Field('reset_password_key', length=128, default= '',writable=False, readable=False), migrate=True) >From the view when the user enter his email, nothing really happen, no error message. The retrieved password is not sent... I'm using Web2py Version 1.83.2 Please let me know if you have any idea... This code used to work with previous version of Web2py...Thanks, Thanks