diff --git a/Controllers/DashboardController.cs b/Controllers/DashboardController.cs new file mode 100644 index 0000000..a25d665 --- /dev/null +++ b/Controllers/DashboardController.cs @@ -0,0 +1,14 @@ +using Microsoft.AspNetCore.Mvc; + +namespace MyApp.Namespace +{ + public class DashboardController : Controller + { + // GET: DashboardController + public ActionResult Index() + { + return View(); + } + + } +} diff --git a/Views/Dashboard/Index.cshtml b/Views/Dashboard/Index.cshtml new file mode 100644 index 0000000..2e947e4 --- /dev/null +++ b/Views/Dashboard/Index.cshtml @@ -0,0 +1,173 @@ +@{ + Layout = "_LayoutApp"; + ViewData["Title"] = "Dashboard"; + ViewData["DashboardActive"] = "menu-active"; +} + +