Displays the reset password form
Processes a reset password request
Namespace:
RainWorx.FrameWorx.MVC.ControllersAssembly: RainWorx.FrameWorx.MVC (in RainWorx.FrameWorx.MVC.dll) Version: 3.5
Syntax
C#
public Task<ActionResult> ResetPassword( string email, string resetToken, string Password, string confirmPassword )
Parameters
- Type: SystemString
email address of the requesting user - resetToken
- Type: SystemString
password reset token - Password
- Type: SystemString
new password requested by user - confirmPassword
- Type: SystemString
confirmation of new password, must match "Password"
Return Value
Type: TaskActionResultRedirect to login view (success) or View(), otherwise
See Also