From a06432ed0e759d942535a1f7198e65255a6c4869 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 17 Apr 2017 21:15:11 -0400 Subject: [PATCH] fix account login --- Project-Unite/Controllers/AccountController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Project-Unite/Controllers/AccountController.cs b/Project-Unite/Controllers/AccountController.cs index 2251fc0..6309184 100644 --- a/Project-Unite/Controllers/AccountController.cs +++ b/Project-Unite/Controllers/AccountController.cs @@ -122,6 +122,7 @@ public async Task Login(LoginViewModel model, string returnUrl) 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.")); + return View(model); } }