From f67250fac35833c95c34f170934f99c9a7016672 Mon Sep 17 00:00:00 2001 From: Yuri Dimas Date: Thu, 16 Oct 2025 11:32:35 +0700 Subject: [PATCH] style: add page profil bank sampah Index & Edit --- Areas/Bsi/Controllers/ProfilController.cs | 18 ++ Areas/Bsi/Views/Profil/Edit.cshtml | 323 ++++++++++++++++++++++ Areas/Bsi/Views/Profil/Index.cshtml | 160 +++++++++++ Areas/Bsi/Views/_ViewImports.cshtml | 2 + Areas/Bsi/Views/_ViewStart.cshtml | 3 + BankSampahApp.csproj | 2 + 6 files changed, 508 insertions(+) create mode 100644 Areas/Bsi/Controllers/ProfilController.cs create mode 100644 Areas/Bsi/Views/Profil/Edit.cshtml create mode 100644 Areas/Bsi/Views/Profil/Index.cshtml create mode 100644 Areas/Bsi/Views/_ViewImports.cshtml create mode 100644 Areas/Bsi/Views/_ViewStart.cshtml diff --git a/Areas/Bsi/Controllers/ProfilController.cs b/Areas/Bsi/Controllers/ProfilController.cs new file mode 100644 index 0000000..f6439e6 --- /dev/null +++ b/Areas/Bsi/Controllers/ProfilController.cs @@ -0,0 +1,18 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Bsi.Controllers +{ + [Area("Bsi")] + public class ProfilController : Controller + { + public IActionResult Index() + { + return View(); + } + + public IActionResult Edit(int id) + { + return View(); + } + } +} diff --git a/Areas/Bsi/Views/Profil/Edit.cshtml b/Areas/Bsi/Views/Profil/Edit.cshtml new file mode 100644 index 0000000..dbf9b18 --- /dev/null +++ b/Areas/Bsi/Views/Profil/Edit.cshtml @@ -0,0 +1,323 @@ +@{ + ViewData["Title"] = "Profil Bank Sampah"; +} + +
+
+ + Profil Bank Sampah + +
+
+ +
+ +
+
+
+ Shoes +
+
+

Jakarta Timur

+

Bank Sampah Induk

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

+ Informasi Biodata +

+
+
+
+
+
+
+ + Nama Bank Sampah + * + + +
+
+
+
+ + Kategori Bank Sampah + * + + +
+
+
+
+
+
+ + Email + * + + +
+
+
+
+ + SK Penetapan + * + + +
+
+
+
+
+
+ + Penangung Jawab + * + + +
+
+
+
+ + No. HP Penanggung Jawab + * + + +
+
+
+
+
+
+
+ + Jumlah Pengurus + * + + +
+
+
+
+ + Badan Hukum + * + + +
+
+
+
+
+
+ + Luas Lahan m2 + * + + +
+
+
+
+ + Status Lahan + * + + +
+
+
+
+
+
+ + Tahun Berdiri + * + + +
+
+
+
+ + SK Penetapan PT + * + + +
+
+
+
+
+
+
+ + Provinsi + * + + +
+
+
+
+ + Kota + * + + +
+
+
+
+
+
+ + Kecamatan + * + + +
+
+
+
+ + Keluaran + * + + +
+
+
+
+
+
+ + Alamat + * + + +
+
+
+
+
+
+ + RT + * + + +
+
+
+
+ + RW + * + + +
+
+
+
+ + Kode Pos + * + + +
+
+
+
+
+
+
+ + Latitude + + +
+
+
+
+ + Longitude + + +
+
+
+
+
+
+
+ + File SK + * + + + +
+
+
+
+ + Logo Bank Sampah + * + + + +
+
+
+
+ +
+
+
\ No newline at end of file diff --git a/Areas/Bsi/Views/Profil/Index.cshtml b/Areas/Bsi/Views/Profil/Index.cshtml new file mode 100644 index 0000000..82a60a5 --- /dev/null +++ b/Areas/Bsi/Views/Profil/Index.cshtml @@ -0,0 +1,160 @@ +@{ + ViewData["Title"] = "Profil Bank Sampah"; +} + +
+
+ + Profil Bank Sampah + +
+
+ +
+ +
+
+
+ Shoes +
+
+

Jakarta Timur

+

Bank Sampah Induk

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

+ Informasi Biodata +

+ + + Edit Biodata + +
+
+
+
+ Nama Bank Sampah + Jakarta Timur +
+
+ Kategori Bank Sampah + Warga +
+
+
+
+ Email + banksampahjaktim@gmail.com +
+
+ SK Penetapan + 127.12.1222.1111 +
+
+
+
+ Penangung Jawab + Ikhdan Maulana +
+
+ No. HP Penanggung Jawab + 089556728383 +
+
+
+
+
+ Jumlah Pengurus + 67 +
+
+ Badan Hukum + PT +
+
+
+
+ Luas Lahan m2 + 6128 +
+
+ Status Lahan + Pribadi +
+
+
+
+ Tahun Berdiri + 2021 +
+
+ SK Penetapan PT + 12.340-327832.38.12 +
+
+
+
+
+ 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 +
+
+
+
+
+ Latitude + 324242 +
+
+ Longitude + -371872 +
+
+
+
\ No newline at end of file diff --git a/Areas/Bsi/Views/_ViewImports.cshtml b/Areas/Bsi/Views/_ViewImports.cshtml new file mode 100644 index 0000000..7c4f6f4 --- /dev/null +++ b/Areas/Bsi/Views/_ViewImports.cshtml @@ -0,0 +1,2 @@ +@using BankSampahApp +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers \ No newline at end of file diff --git a/Areas/Bsi/Views/_ViewStart.cshtml b/Areas/Bsi/Views/_ViewStart.cshtml new file mode 100644 index 0000000..4cf0c1a --- /dev/null +++ b/Areas/Bsi/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "/Areas/Shared/Layouts/App/_Layout.cshtml"; +} diff --git a/BankSampahApp.csproj b/BankSampahApp.csproj index 0348c12..d740fc5 100644 --- a/BankSampahApp.csproj +++ b/BankSampahApp.csproj @@ -35,6 +35,8 @@ + +