From c9e7f8b712230eec7e4b8871164d37180ca8b710 Mon Sep 17 00:00:00 2001 From: Ivan_Starostin Date: Sun, 2 Jun 2024 17:28:17 +0400 Subject: [PATCH] Upload files to 'ShipyardClientApp/Views/Home' --- ShipyardClientApp/Views/Home/Privacy.cshtml | 28 +++++++++++++++++++ .../Views/Home/Privacy.cshtml.cs | 19 +++++++++++++ ShipyardClientApp/Views/Home/Register.cshtml | 28 +++++++++++++++++++ .../Views/Home/Register.cshtml.cs | 12 ++++++++ 4 files changed, 87 insertions(+) create mode 100644 ShipyardClientApp/Views/Home/Privacy.cshtml create mode 100644 ShipyardClientApp/Views/Home/Privacy.cshtml.cs create mode 100644 ShipyardClientApp/Views/Home/Register.cshtml create mode 100644 ShipyardClientApp/Views/Home/Register.cshtml.cs diff --git a/ShipyardClientApp/Views/Home/Privacy.cshtml b/ShipyardClientApp/Views/Home/Privacy.cshtml new file mode 100644 index 0000000..1741d6d --- /dev/null +++ b/ShipyardClientApp/Views/Home/Privacy.cshtml @@ -0,0 +1,28 @@ +@using ShipyardContracts.ViewModels + +@model ClientViewModel + +@{ + ViewData["Title"] = "Privacy Policy"; +} +
+

Личные данные

+
+
+
+
Логин:
+
+
+
+
Пароль:
+
+
+
+
ФИО:
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/ShipyardClientApp/Views/Home/Privacy.cshtml.cs b/ShipyardClientApp/Views/Home/Privacy.cshtml.cs new file mode 100644 index 0000000..2c788bf --- /dev/null +++ b/ShipyardClientApp/Views/Home/Privacy.cshtml.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace ShipyardClientApp.Views.Home +{ + public class PrivacyModel : PageModel + { + private readonly ILogger _logger; + + public PrivacyModel(ILogger logger) + { + _logger = logger; + } + + public void OnGet() + { + } + } +} \ No newline at end of file diff --git a/ShipyardClientApp/Views/Home/Register.cshtml b/ShipyardClientApp/Views/Home/Register.cshtml new file mode 100644 index 0000000..c345aca --- /dev/null +++ b/ShipyardClientApp/Views/Home/Register.cshtml @@ -0,0 +1,28 @@ +@{ + ViewData["Title"] = "Register"; +} + +
+

Регистрация

+
+
+
+
Логин:
+
+
+
+
Пароль:
+
+
+
+
ФИО:
+
+
+
+
+
+ +
+
+
diff --git a/ShipyardClientApp/Views/Home/Register.cshtml.cs b/ShipyardClientApp/Views/Home/Register.cshtml.cs new file mode 100644 index 0000000..c7c948f --- /dev/null +++ b/ShipyardClientApp/Views/Home/Register.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace ShipyardClientApp.Views.Home +{ + public class RegisterModel : PageModel + { + public void OnGet() + { + } + } +}