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()
+ {
+ }
+ }
+}