From d3ffccb690849e2d24565e736477a73166a786b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=91=D0=B0=D0=BA=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D1=81=D0=BA=D0=B0=D1=8F?= Date: Tue, 30 Apr 2024 12:05:29 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B1=D1=83=D1=8E=20=D0=B4?= =?UTF-8?q?=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82=D1=8C=20=D1=80=D0=B5=D0=B3?= =?UTF-8?q?=D0=B8=D1=81=D1=82=D1=80=D0=B0=D1=86=D0=B8=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/HomeController.cs | 5 +++- .../Views/Home/Register.cshtml | 27 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 Polyclinic/PolyclinicWebView/Views/Home/Register.cshtml diff --git a/Polyclinic/PolyclinicWebView/Controllers/HomeController.cs b/Polyclinic/PolyclinicWebView/Controllers/HomeController.cs index 7c3f123..ad94345 100644 --- a/Polyclinic/PolyclinicWebView/Controllers/HomeController.cs +++ b/Polyclinic/PolyclinicWebView/Controllers/HomeController.cs @@ -1,6 +1,7 @@ using Microsoft.AspNetCore.Mvc; using PolyclinicWebView.Models; using System.Diagnostics; +using System.Globalization; namespace PolyclinicWebView.Controllers { @@ -13,9 +14,11 @@ namespace PolyclinicWebView.Controllers _logger = logger; } + [HttpGet] public IActionResult Index() { - return View(); + + return View(); } public IActionResult Privacy() diff --git a/Polyclinic/PolyclinicWebView/Views/Home/Register.cshtml b/Polyclinic/PolyclinicWebView/Views/Home/Register.cshtml new file mode 100644 index 0000000..913a04a --- /dev/null +++ b/Polyclinic/PolyclinicWebView/Views/Home/Register.cshtml @@ -0,0 +1,27 @@ +@{ + ViewData["Title"] = "Register"; +} +
+

Регистрация

+
+
+
+
Email:
+
+
+
+
Пароль:
+
+
+
+
ФИО:
+
+
+
+
+
+ +
+
+
\ No newline at end of file