Hi,
can any expert here throw in some light on how to create password reset page/link when user click 'forgot password'
Many thanks!
password reset link, forgot password
Monday, November 25, 2024 8:43:15 PM
Would you explain issue with more details what is the case?
By default, if someone use forgot password link (at /login page) is redirect to password recovery page. You may find at view files like: PasswordRecovery.cshtml and PasswordRecoveryConfirm.cshtml
By default, if someone use forgot password link (at /login page) is redirect to password recovery page. You may find at view files like: PasswordRecovery.cshtml and PasswordRecoveryConfirm.cshtml
Best regards,
Tomasz
GrandNode Team
Tomasz
GrandNode Team
0
In the message template by default : href="{{Customer.PasswordRecoveryURL}}
However when the link is clicked in the email sent, the user is directed to http://www.passwordrecovery.com/confirm?token=22938e85-63c8-4472-ac02-8669413769a2&email=emailexample%40gmail.com
However when the link is clicked in the email sent, the user is directed to http://www.passwordrecovery.com/confirm?token=22938e85-63c8-4472-ac02-8669413769a2&email=emailexample%40gmail.com
0
If you want to modify the design of the Confirmation page, you can do it in following file: https://github.com/grandnode/grandnode/blob/develop/Grand.Web/Views/Customer/PasswordRecoveryConfirm.cshtml
That's your intention? You are not able to change the URL of the confirmation link, it's generated dynamically.
That's your intention? You are not able to change the URL of the confirmation link, it's generated dynamically.
Best regards,
Patryk
GrandNode Team
Patryk
GrandNode Team
0
currently, the user is directed to this link without my domain name in front of it
: passwordrecovery/confirm?token=ac79cbe4-220a-4983-a1bd-00ba6a60f8d3&email=example%40gmail.com
The browser says:
This site can’t be reached
passwordrecovery’s server IP address could not be found.
Try:
Checking the connection
Checking the proxy, firewall, and DNS configuration
Running Windows Network Diagnostics
ERR_NAME_NOT_RESOLVED
How can I generate my domain in front of the URL automatically, so that the password recovery page appears?
example.com/passwordrecovery/confirm?token=ac79cbe4-220a-4983-a1bd-00ba6a60f8d3&email=example%40gmail.com
Thank you
: passwordrecovery/confirm?token=ac79cbe4-220a-4983-a1bd-00ba6a60f8d3&email=example%40gmail.com
The browser says:
This site can’t be reached
passwordrecovery’s server IP address could not be found.
Try:
Checking the connection
Checking the proxy, firewall, and DNS configuration
Running Windows Network Diagnostics
ERR_NAME_NOT_RESOLVED
How can I generate my domain in front of the URL automatically, so that the password recovery page appears?
example.com/passwordrecovery/confirm?token=ac79cbe4-220a-4983-a1bd-00ba6a60f8d3&email=example%40gmail.com
Thank you
0