public ActionResult Register(string name, string email, string password, string nickname)
 {
     if (ModelState.IsValid)
     {
         if (accountRepo.CreateUser(name, email, password, nickname))
         {
             return(RedirectToAction("Index", "Home"));
         }
     }
     return(View());
 }