From d968186d78002629a300bc4d0160e85eb8d0e89a Mon Sep 17 00:00:00 2001
From: Kirill <117719052+KirillFirsof@users.noreply.github.com>
Date: Thu, 2 May 2024 00:19:36 +0400
Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=20=D1=81=D0=BE?=
=?UTF-8?q?=20=D1=81=D1=82=D1=80=D0=B0=D0=BD=D0=B8=D1=86=D1=8B=20=D1=80?=
=?UTF-8?q?=D0=B5=D0=B3=D0=B8=D1=81=D1=82=D1=80=D0=B0=D1=86=D0=B8=D0=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
School/SchoolApp/Views/Home/Register.cshtml | 46 ++++++++++++++-
School/SchoolApp/wwwroot/css/site.css | 64 +++++++++++++++++++++
2 files changed, 109 insertions(+), 1 deletion(-)
diff --git a/School/SchoolApp/Views/Home/Register.cshtml b/School/SchoolApp/Views/Home/Register.cshtml
index 383909d..7376979 100644
--- a/School/SchoolApp/Views/Home/Register.cshtml
+++ b/School/SchoolApp/Views/Home/Register.cshtml
@@ -3,5 +3,49 @@
ViewData["Title"] = "Redister";
}
-
Register
+
+
Регистрация
+
+
diff --git a/School/SchoolApp/wwwroot/css/site.css b/School/SchoolApp/wwwroot/css/site.css
index f27e5ad..26de935 100644
--- a/School/SchoolApp/wwwroot/css/site.css
+++ b/School/SchoolApp/wwwroot/css/site.css
@@ -15,4 +15,68 @@ html {
body {
margin-bottom: 60px;
+}
+
+.title-h3 {
+ margin: 10px;
+ text-align: center;
+ font-size: 26px;
+ font-weight: bold;
+}
+
+.form-section {
+ display: flex;
+ flex-direction: column;
+ padding: 15px 20px;
+ margin: 20px 0;
+ ;
+ background: linear-gradient(135deg, #161616, #fff);
+ border-radius: 20px;
+}
+
+.text-field-label {
+ display: none;
+}
+
+.text-field-input {
+ display: block;
+ width: 100%;
+ padding: 7px;
+ font-family: inherit;
+ font-size: 18px;
+ color: #212529;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #bdbdbd;
+ border-radius: 0.25rem;
+}
+
+.text-field-textarea {
+ display: block;
+ width: 100%;
+ height: 185px;
+ padding: 7px;
+ font-family: inherit;
+ font-size: 18px;
+ color: #212529;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #bdbdbd;
+ border-radius: 0.25rem;
+ resize: none;
+}
+
+.submit-button-label {
+ display: none;
+}
+
+.submit-button {
+ padding: 15px 20px;
+ margin: 20px 0;
+ font-size: 20px;
+ font-weight: bold;
+ color: white;
+ background: linear-gradient(135deg, #161616, #fff);
+ border: none;
+ border-radius: 20px;
}
\ No newline at end of file