public IActionResult SignUp(LoginData a) { DatabaseCon z = new DatabaseCon(); z.InsertUsers(a.name, a.email, a.password); return(Redirect("/")); }