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
+
+ +