From 6f7af4a056767df7a7654100a64fc93833d77c8a Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Fri, 17 Oct 2025 15:27:03 +0700 Subject: [PATCH] style: add page profile for nasabah --- Areas/Nasabah/Controllers/ProfilController.cs | 18 ++ Areas/Nasabah/Views/Profil/Edit.cshtml | 189 ++++++++++++++++++ Areas/Nasabah/Views/Profil/Index.cshtml | 119 +++++++++++ 3 files changed, 326 insertions(+) create mode 100644 Areas/Nasabah/Controllers/ProfilController.cs create mode 100644 Areas/Nasabah/Views/Profil/Edit.cshtml create mode 100644 Areas/Nasabah/Views/Profil/Index.cshtml diff --git a/Areas/Nasabah/Controllers/ProfilController.cs b/Areas/Nasabah/Controllers/ProfilController.cs new file mode 100644 index 0000000..ed262ca --- /dev/null +++ b/Areas/Nasabah/Controllers/ProfilController.cs @@ -0,0 +1,18 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Nasabah.Controllers +{ + [Area("Nasabah")] + public class ProfilController : Controller + { + public IActionResult Index() + { + return View(); + } + + public IActionResult Edit(int id) + { + return View(); + } + } +} diff --git a/Areas/Nasabah/Views/Profil/Edit.cshtml b/Areas/Nasabah/Views/Profil/Edit.cshtml new file mode 100644 index 0000000..0bcab1b --- /dev/null +++ b/Areas/Nasabah/Views/Profil/Edit.cshtml @@ -0,0 +1,189 @@ +@{ + ViewData["Title"] = "Profil Bank Sampah"; +} + +
+
+ + Profil Bank Sampah + +
+
+ +
+ +
+
+
+ Shoes +
+
+

Jakarta Timur

+

Bank Sampah Induk

+
+
+
+ Status Aktif +
+
+ +
+ +
+
+
+

+ Informasi Biodata +

+
+
+
+
+
+
+ + Nama Nasabah + * + + +
+
+
+
+ + NIK + * + + +
+
+
+
+
+
+ + Email + * + + +
+
+
+
+ + No. HP + * + + +
+
+
+
+
+
+
+ + Provinsi + * + + +
+
+
+
+ + Kota + * + + +
+
+
+
+
+
+ + Kecamatan + * + + +
+
+
+
+ + Keluaran + * + + +
+
+
+
+
+
+ + Alamat + * + + +
+
+
+
+
+
+ + RT + * + + +
+
+
+
+ + RW + * + + +
+
+
+
+ + Kode Pos + * + + +
+
+
+
+ +
+
+
\ No newline at end of file diff --git a/Areas/Nasabah/Views/Profil/Index.cshtml b/Areas/Nasabah/Views/Profil/Index.cshtml new file mode 100644 index 0000000..ae00bca --- /dev/null +++ b/Areas/Nasabah/Views/Profil/Index.cshtml @@ -0,0 +1,119 @@ +@{ + ViewData["Title"] = "Profil Bank Sampah"; +} + +
+
+ + Profil Bank Sampah + +
+
+ +
+ +
+
+
+ Shoes +
+
+

Ikhdan Nizar Maulana

+

Nasabah

+
+
+
+ Status Aktif +
+
+ +
+ +
+
+
+

+ Informasi Biodata +

+ + + Edit Biodata + +
+
+
+
+ Nama Nasabah + Ikhdan Nizar Maulana +
+
+ NIK + 1234567890123456 +
+
+
+
+ Email + ikhdan@gmail.com +
+
+ No. HP + 089556728383 +
+
+
+
+ Nama Bank + Mandiri +
+ +
+ No. Rekening + 781274822 +
+
+
+
+
+ Provinsi + DKI Jakarta +
+
+ Kota + Kota Adm Jakarta Timur +
+
+
+
+ Kecamatan + Pasarejo +
+
+ Kelurahan + Pasar Minggu +
+
+
+
+ Alamat + Jalan Raya Pasar Minggu No. 45 Jakarta Timur, DKI Jakarta +
+
+ RT + 02 +
+
+ RW + 02 +
+
+ Kode Pos + 61374 +
+
+
+
\ No newline at end of file