Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Components/HMI/ui/routes/auth.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ module.exports = function (app) {
console.log('Status Code: ' + axiosResponse.status + ' ' + axiosResponse.statusText)
console.log("Server's response: ", axiosResponse.data);

enquiry = `Your new OTP is ${axiosResponse.data.otp} and click here to reset password :- http://localhost:8080/forgotPassword`
enquiry = `Your new OTP is ${axiosResponse.data.otp} and click here to reset password :- ${process.env.CLIENT_URL}/forgotPassword`

await emailcontroller.send_enquiry(axiosResponse.data.email, 'Recovery Password', enquiry)

Expand Down
Loading