public ActionResult Register(AuthenticateUserForm userForm)
 {
     throw new NotImplementedException();
 }
 public ActionResult Login(AuthenticateUserForm authenticateUserForm)
 {
     return
         HandleForm(authenticateUserForm)
             .WithSuccessResult(RedirectToLocal(authenticateUserForm.ReturnUrl));
 }