style: add page dashboard for Nasabah
parent
3b7c054d4d
commit
5a6451d00f
|
|
@ -0,0 +1,13 @@
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace BankSampahApp.Areas.Nasabah.Controllers
|
||||||
|
{
|
||||||
|
[Area("Nasabah")]
|
||||||
|
public class DashboardController : Controller
|
||||||
|
{
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Dashboard";
|
||||||
|
}
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-2 md:flex-row md:justify-between md:gap-0">
|
||||||
|
<div class="prose">
|
||||||
|
<span class="text-xl font-semibold text-black">
|
||||||
|
Dashboard
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
@using BankSampahApp
|
||||||
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@{
|
||||||
|
Layout = "/Areas/Shared/Layouts/App/_Layout.cshtml";
|
||||||
|
}
|
||||||
|
|
@ -37,6 +37,8 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Areas\Bsi\Data\" />
|
<Folder Include="Areas\Bsi\Data\" />
|
||||||
<Folder Include="Areas\Bsi\Models\" />
|
<Folder Include="Areas\Bsi\Models\" />
|
||||||
|
<Folder Include="Areas\Nasabah\Data\" />
|
||||||
|
<Folder Include="Areas\Nasabah\Models\" />
|
||||||
<Folder Include="Areas\Shared\Layouts\LandingPage\" />
|
<Folder Include="Areas\Shared\Layouts\LandingPage\" />
|
||||||
<Folder Include="Areas\Sudin\Data\" />
|
<Folder Include="Areas\Sudin\Data\" />
|
||||||
<Folder Include="Areas\Sudin\Models\" />
|
<Folder Include="Areas\Sudin\Models\" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue