fix login password check bug

This commit is contained in:
Michael 2017-04-17 21:01:59 -04:00
parent 662bffcdf0
commit 2d5f268549

View file

@ -94,6 +94,8 @@ The address used to send this message is not a no-reply address. In fact, my nam
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
{
try
{
if (!ModelState.IsValid)
{
@ -117,6 +119,11 @@ The address used to send this message is not a no-reply address. In fact, my nam
return View(model);
}
}
catch
{
ModelState.AddModelError("Password", new Exception("An error occurred while verifying your password. Possible cause: If you are a user from before the website was revamped, you don't have a usable password. Please reset it, otherwise you won't be able to log in."));
}
}
//
// GET: /Account/VerifyCode