From 30606d7f2bd29750ca3c8027de2ef435dac6cd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=BA=20=D0=98=D0=B3=D0=BE=D1=80=D1=8C?= Date: Sat, 8 Apr 2023 23:35:29 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D1=8D=D0=BB=D0=B5=D0=BC=D0=B5=D0=BD=D1=82=D0=BE?= =?UTF-8?q?=D0=B2=20=D0=BD=D0=B0=20=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D1=86=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CarServiceWebApp/Views/Home/Enter.cshtml | 21 ++++++++++++++++ .../CarServiceWebApp/Views/Home/Index.cshtml | 10 +++++--- .../Views/Home/Register.cshtml | 25 +++++++++++++++++++ .../Views/Shared/_Layout.cshtml | 12 ++++++--- 4 files changed, 62 insertions(+), 6 deletions(-) create mode 100644 CarService/CarServiceWebApp/Views/Home/Enter.cshtml create mode 100644 CarService/CarServiceWebApp/Views/Home/Register.cshtml diff --git a/CarService/CarServiceWebApp/Views/Home/Enter.cshtml b/CarService/CarServiceWebApp/Views/Home/Enter.cshtml new file mode 100644 index 0000000..106d3d5 --- /dev/null +++ b/CarService/CarServiceWebApp/Views/Home/Enter.cshtml @@ -0,0 +1,21 @@ +@{ + ViewData["Title"] = "Enter"; +} + +
+

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

+
+
+
+
Логин:
+
+
+
+
Пароль:
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/CarService/CarServiceWebApp/Views/Home/Index.cshtml b/CarService/CarServiceWebApp/Views/Home/Index.cshtml index d2d19bd..0c31475 100644 --- a/CarService/CarServiceWebApp/Views/Home/Index.cshtml +++ b/CarService/CarServiceWebApp/Views/Home/Index.cshtml @@ -1,8 +1,12 @@ @{ - ViewData["Title"] = "Home Page"; + ViewData["Title"] = "Главная"; }
-

Welcome

-

Learn about building Web apps with ASP.NET Core.

+

Главная страница

+ + +
+ +
\ No newline at end of file diff --git a/CarService/CarServiceWebApp/Views/Home/Register.cshtml b/CarService/CarServiceWebApp/Views/Home/Register.cshtml new file mode 100644 index 0000000..398b516 --- /dev/null +++ b/CarService/CarServiceWebApp/Views/Home/Register.cshtml @@ -0,0 +1,25 @@ +@{ + ViewData["Title"] = "Register"; +} + +
+

Регистрация

+
+
+
+
Логин:
+
+
+
+
Пароль:
+
+
+
+
ФИО:
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/CarService/CarServiceWebApp/Views/Shared/_Layout.cshtml b/CarService/CarServiceWebApp/Views/Shared/_Layout.cshtml index 05619f1..a3242a5 100644 --- a/CarService/CarServiceWebApp/Views/Shared/_Layout.cshtml +++ b/CarService/CarServiceWebApp/Views/Shared/_Layout.cshtml @@ -12,7 +12,7 @@