Hi Harshraj,
On your page do:
Which allows you to reach you page on
DOon't forget to assign user role to the page with URL.
Hope this wil help, Good luck,
Jan
Have a look at the URL property of the page.
https://docs.mendix.com/refguide/page-properties/#url
Hope this helps.
Takes a few steps:
- Create an entity ‘passwordreset’ having attribute ‘hash’, association to System/User and createdDate;
- Create a page where people can enter the hash;
- Create a scheduled event that removes ‘passwordreset’-object that are older than ten minutes;
NB. Make this more secure:
- to prevent hackers doing a brute force attack: make sure you use a long hash, 256 chars at least, and make sure your app’s response only returns true/false after a couple of seconds;
- Give page property ‘url’ a weird value, to obfuscat the proces a bit;
An even better way is to use the DeepLinkModule which will enable you to pass a link in which you include the hash at the end: