public IActionResult Login(Account account)
        {
            Claim   name = User.FindFirst(ClaimTypes.Name);
            Account acc  = AccountDTO.LoginAsync(account);

            if (acc != null)
            {
                SercurityManager.Login(this.HttpContext, acc);
                return(RedirectToAction("", "home"));
            }
            TempData["error"] = "Sai tên tài khoản hoặc mật khẩu";
            return(View());
        }