Forgot password {change_link} issue

Hi. Good day!

Can we edit or modify the {change_link} url? Just like for example adding another query parameters on it. Or can we change this url “https://api.backendless.com/0821ED8C-1618-AEA0-FF94-E43038CAF900/F72FF4CD-6BA1-09A1-FF8F-63E6A3144D00/change_password/5B7AED62-F3B5-B9E4-FFA6-3C4DFD30A400” to something like this “https://app.ourApp.com/0821ED8C-1618-AEA0-FF94-E43038CAF900/F72FF4CD-6BA1-09A1-FF8F-63E6A3144D00/change_password/5B7AED62-F3B5-B9E4-FFA6-3C4DFD30A400” to have our own password reset form??

Thanks ahead.
Rexon

you can provide your own form by changing template on file service http://develop.backendless.com/#<your-app-name>/v1/main/files/web/templates/change_password

Yes, it can be edited in the template but we wanted to set a unique url each database/version.
Template in - (/web/templates/change_password/app.js.
Like for example for “v2” database/version we want to set the base url in:
window.location.href = ‘http://app.iflipd.com#’+location.pathname;
http://backflip.backendless.com/develop/#Backflip/stage/main/files/web/templates/change_password
And for “stage” database/version we want to set it to:
window.location.href = ‘http://app2.iflipd.com/reset?’+location.pathname;
http://backflip.backendless.com/develop/#Backflip/v2/main/files/web/templates/change_password
As mentioned above with different database/version. They are sharing the same template.

noticed the domain app2.iflipd.com and app.iflipd.com

Thanks.