Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-26 | Change templates with new UI | Shelsy | |
2017-02-01 | Forgot Password and Reset Issue Resolved | prathamesh | |
The problem was: We have included yaksh urls to the project urls with the namespace "yaksh". So whenever we call the url name i.e "yaksh:<url>" a reverse match is made. But for Forgot Password and Change Password we are using django's in-built functionality, where the reverse url is hardcoded. So the reverse match fails as the namespace is not specified! To resolve this, created a urls_password_reset URL dispatcher file and included to the project urls. | |||
2016-07-11 | changed templates for forgot password and change password | maheshgudi | |
2016-04-15 | EditProfile, ChangePassword, StudentsEnrollment facility | adityacp | |
2016-03-09 | Forgot Password facility | prathamesh | |
Used django in-built views. Templates overridden. User enters email address and submits. The user receives an email with password reset link(one time link). The link contains a token generate using the current state of the user like user password. The link is verified each time when it is been requested. So the link will be invalid if the user has already changed the password using the link.(since the token is generated using current state of the user.) User resets his password via the link. |