I am fairly new to MVC development.
I have a controller called "Usercontroller" to manage SignIn, Forgot password and registration. I have added HttpGet, HttpPost methods to SignIn. HttpPost SignIn method is an overload of the SignIn function with "Model.User". I have a "Forgot Password" method as well. (Send the email).
Forgot Password is a div pop up, which has a "Send Link" functionality. If I click on "Send Link", it will also hit the "SignIn" method in the user controller. Need to identify this and call "Forgot Password" method. How can I do this? Or is there a better way to implement forgot password?