URL of a page

0
Hi Reader, How can I change the URL of a particular page? And in what format I can provide URL? Thanks and Regards, Harshraj Singh
asked
3 answers
2

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

answered
0

Have a look at the URL property of the page.

https://docs.mendix.com/refguide/page-properties/#url

Hope this helps.

answered
0

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:

answered