public IActionResult LoginHandler(Student studentFromForm)
        {
            if (foxService.AuthenticateStudent(studentFromForm.Name))
            {
                return(LocalRedirect("/home/" + studentFromForm.Name));
            }

            return(LocalRedirect(""));
        }