public ActionResult AdminLogin(string token)
        {
            var service  = new IdentityService();
            var response = service.AdminSilentLogin(token);

            if (response.Status)
            {
                return(RedirectToAction("Index", "Dashboard"));
            }
            else
            {
                return(RedirectToAction("Login"));
            }
        }