From c18c66ab2320a7fd8229e538b666b7b13ef0ec83 Mon Sep 17 00:00:00 2001 From: Allllen4a Date: Tue, 30 Apr 2024 19:38:49 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B5=D1=89=D0=B5=20=D0=BA=D1=83=D1=87=D0=B0,?= =?UTF-8?q?=20=D0=B4=D1=83=D0=B1=D0=BB=D1=8C=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ClientWebApp/Views/Home/Enter.cshtml | 19 +++++++ .../ClientWebApp/Views/Home/Order.cshtml | 53 +++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 BeautySalonView/ClientWebApp/Views/Home/Enter.cshtml create mode 100644 BeautySalonView/ClientWebApp/Views/Home/Order.cshtml diff --git a/BeautySalonView/ClientWebApp/Views/Home/Enter.cshtml b/BeautySalonView/ClientWebApp/Views/Home/Enter.cshtml new file mode 100644 index 0000000..57576f8 --- /dev/null +++ b/BeautySalonView/ClientWebApp/Views/Home/Enter.cshtml @@ -0,0 +1,19 @@ +@{ + ViewData["Title"] = "Вход"; +} + +

Вход в приложение

+ +
+
+ + +
+
+ + +
+ +
\ No newline at end of file diff --git a/BeautySalonView/ClientWebApp/Views/Home/Order.cshtml b/BeautySalonView/ClientWebApp/Views/Home/Order.cshtml new file mode 100644 index 0000000..b571e83 --- /dev/null +++ b/BeautySalonView/ClientWebApp/Views/Home/Order.cshtml @@ -0,0 +1,53 @@ +@using BeautySalonContracts.ViewModels + +@{ + ViewData["Title"] = "Заказы"; +} + +

Заказы

+ +
+ +
+
+ + / @ViewBag.NumberOfPages +
+ + Перейти + +
+
+
+ + + + + + + + + + @foreach (var item in ViewBag.Order) + { + + + + + + } + +
Номер заказаДата заказаСумма заказа
@item.Id@item.OrderDate@item.OrderAmount
+
+ +