diff --git a/Areas/Bsi/Controllers/DashboardController.cs b/Areas/Bsi/Controllers/DashboardController.cs new file mode 100644 index 0000000..7991884 --- /dev/null +++ b/Areas/Bsi/Controllers/DashboardController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Bsi.Controllers +{ + [Area("Bsi")] + public class DashboardController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Areas/Bsi/Views/Dashboard/Index.cshtml b/Areas/Bsi/Views/Dashboard/Index.cshtml new file mode 100644 index 0000000..23ff5bc --- /dev/null +++ b/Areas/Bsi/Views/Dashboard/Index.cshtml @@ -0,0 +1,11 @@ +@{ + ViewData["Title"] = "Dashboard"; +} + +